Last active
May 18, 2021 08:52
-
-
Save bermanboris/c0b540c450520884182181067c1c480a to your computer and use it in GitHub Desktop.
Installation of AWS CodeDeploy Agent on Ubuntu 16.04
This file contains hidden or 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 | |
sudo apt-get update -y | |
sudo apt-get install ruby wget -y | |
cd /home/ubuntu | |
wget https://aws-codedeploy-eu-central-1.s3.amazonaws.com/latest/install | |
chmod +x ./install | |
sudo ./install auto | |
sudo service codedeploy-agent start | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!