Skip to content

Instantly share code, notes, and snippets.

@olih
Last active August 29, 2015 14:23
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 olih/796d116b2852a1a0ea50 to your computer and use it in GitHub Desktop.
Save olih/796d116b2852a1a0ea50 to your computer and use it in GitHub Desktop.
A few basic tools to install by default
#!/bin/bash
sudo yum install -y epel-release
sudo yum install -y nano
sudo yum install -y git
#Install Amazon Client
curl -O http://peak.telecommunity.com/dist/ez_setup.py
sudo python ez_setup.py
#Install pip
sudo easy_install pip
#Install aws cli
sudo pip install awscli
# Install Docker
sudo yum install -y jq
sudo yum install -y docker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment