Skip to content

Instantly share code, notes, and snippets.

@bermanboris
Last active May 18, 2021 08:52
Show Gist options
  • Save bermanboris/c0b540c450520884182181067c1c480a to your computer and use it in GitHub Desktop.
Save bermanboris/c0b540c450520884182181067c1c480a to your computer and use it in GitHub Desktop.
Installation of AWS CodeDeploy Agent on Ubuntu 16.04
#!/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
@BoniWPy
Copy link

BoniWPy commented May 10, 2020

thanks

@alinoudev
Copy link

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment