Created
July 14, 2020 16:29
-
-
Save amcginlay/0f790850db7511f3fe064b161dc10b1f to your computer and use it in GitHub Desktop.
Installing the CodeDeploy agent on EC2
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 yum update -y | |
sudo yum install -y ruby wget | |
wget https://aws-codedeploy-us-east-1.s3.us-east-1.amazonaws.com/latest/install | |
chmod +x ./install | |
sudo ./install auto | |
sudo service codedeploy-agent status |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment