Created
December 8, 2017 02:31
-
-
Save tom-butler/6a28f41d0e61978a2c7a7f3dbd8d1802 to your computer and use it in GitHub Desktop.
install-ssm-agent-ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# SSM agent | |
sudo apt-get update && sudo apt-get install -y build-essential | |
curl https://amazon-ssm-ap-southeast-2.s3.amazonaws.com/latest/debian_amd64/amazon-ssm-agent.deb -o /tmp/amazon-ssm-agent.deb | |
sudo dpkg -i /tmp/amazon-ssm-agent.deb | |
sudo systemctl start amazon-ssm-agent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment