-
-
Notifications
You must be signed in to change notification settings - Fork 288
Add dependency check to install script #122
Comments
works on aws-cli/1.11.133 Python/2.7.5 Linux/3.10.0-693.el7.x86_64 botocore/1.6.0 |
For the record, I'm able to get it to work on legacy machines with Python 2.6.6. @michaelwittig, would you be interested in receiving a PR for the version checks? |
@artburkart but I believe we first have to figure out the minimum version? |
Ha, I was thinking we could just say something is the minimum until proven otherwise. |
Another experience with unmet dependencies. Started fresh EC2 instance from fairly recent Installed sudo apt-get update
sudo apt-get install python-pip -y
sudo pip install awscli --upgrade As recommended in Executed install script successfully using Uninstalling Clearly it it issue with Potential solution would be to test if user Sidenotes:
aws --version
aws-cli/1.11.13 Python/3.5.2 Linux/4.4.0-1062-aws botocore/1.4.70 It's from November 2016. Latest available version is 1.15.57
|
@laurikimmel in our test, we install |
It works for me too in case I install
Yes - I used My point is - it's easy to get to the state where
After installation I was not able to login with SSH although user accounts where synced from IAM. Actual problem is - user sudo -u nobody /opt/authorized_keys_command.sh xxx fails with appropriate message. In my opinion it would save lots of time and confusion if |
Metadata:
I was not able to login over SSH with existing IAM user account. Troubleshooting revealed
in
authorized_keys_command.sh
was returning error since outdated version ofawscli
.Upgrading
awscli
to lates available (1.15.2) fixed the issue.The text was updated successfully, but these errors were encountered: