Skip to content

Instantly share code, notes, and snippets.

@gekart
Created November 6, 2018 11:31
Show Gist options
  • Save gekart/943ca945ba03f1727eeeda7576287caf to your computer and use it in GitHub Desktop.
Save gekart/943ca945ba03f1727eeeda7576287caf to your computer and use it in GitHub Desktop.
AWS Instance Creation Userdata for a 2048 Demo
#!/bin/bash -x
yum install -y httpd git
cd /var/www/html
rm -rf *
git clone https://github.com/gabrielecirulli/2048.git .
service httpd start
chkconfig httpd on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment