Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding trusted host param for pip install #41

Merged
merged 2 commits into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions AgentAmazonLinux2/Setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ py3Install () {

# install virtualenv flask
virtualenv flask
yes | flask/bin/pip install flask
yes | flask/bin/pip install requests
yes | flask/bin/pip install python-pytun
yes | flask/bin/pip install --upgrade python-iptables
yes | flask/bin/pip install docker
yes | flask/bin/pip install boto3
yes | flask/bin/pip --trusted-host pypi.python.org install flask
yes | flask/bin/pip --trusted-host pypi.python.org install requests
yes | flask/bin/pip --trusted-host pypi.python.org install python-pytun
yes | flask/bin/pip --trusted-host pypi.python.org install --upgrade python-iptables
yes | flask/bin/pip --trusted-host pypi.python.org install docker
yes | flask/bin/pip --trusted-host pypi.python.org install boto3

#########
cd $DAEMON_DIR
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2024-08-13

### Changed
- Added `--trusted-host pypi.python.org` parameter to all `pip install` commands in the Amazon Linux 2 setup script for improved consistency and reliability.
Comment on lines +1 to +4
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CHANGELOG.md update


## 2024-04-18

### Added
Expand Down
Loading