This file contains 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 | |
# Setup CentOS 7 host as AMI | |
# Update base OS update, and install EPEL repo and Python Pip | |
sudo yum -y update && | |
sudo yum -y install epel-release && | |
sudo yum -y install python-pip && | |
# Install Python add-ons: | |
sudo pip install pystache && |