Skip to content

Instantly share code, notes, and snippets.

@amcginlay
Created July 14, 2020 16:29
Show Gist options
  • Save amcginlay/0f790850db7511f3fe064b161dc10b1f to your computer and use it in GitHub Desktop.
Save amcginlay/0f790850db7511f3fe064b161dc10b1f to your computer and use it in GitHub Desktop.
Installing the CodeDeploy agent on EC2
#!/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