Created
February 13, 2020 08:21
-
-
Save khoa-le/0af5178f94dbd6250177e49861aa42fc to your computer and use it in GitHub Desktop.
Install codedeploy agent on Amazon Linux
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 | |
sudo yum install ruby | |
sudo yum install wget | |
cd /home/ec2-user | |
wget https://aws-codedeploy-ap-southeast-1.s3.ap-southeast-1.amazonaws.com/latest/install | |
chmod +x ./install | |
sudo ./install auto |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment