Skip to content

Instantly share code, notes, and snippets.

@ned1313
Last active August 30, 2018 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ned1313/db1824d5d9d069f33b29dc17d061e11f to your computer and use it in GitHub Desktop.
Save ned1313/db1824d5d9d069f33b29dc17d061e11f to your computer and use it in GitHub Desktop.
Install the CodeDeploy agent on an EC2 instance with RHEL of Amazon Linux
#!/bin/bash
yum update -y
yum install ruby wget -y
cd /home/ec2-user
wget https://aws-codedeploy-us-east-1.s3.amazonaws.com/latest/install
chmod +x ./install
./install auto
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment