Skip to content

Instantly share code, notes, and snippets.

@dorancemc
dorancemc / aws-cfn.sh
Last active May 6, 2018 06:52 — forked from cgswong/aws-cfn.sh
Setup CentOS server with AWS CFN bootstrap
#!/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 &&