Skip to content

Instantly share code, notes, and snippets.

@pacojp
Last active December 18, 2015 03:59
Show Gist options
  • Save pacojp/5722506 to your computer and use it in GitHub Desktop.
Save pacojp/5722506 to your computer and use it in GitHub Desktop.
# init_ec2.sh
curl -o /tmp/init_ec2.sh https://gist.github.com/pacojp/5703761/raw
nohup /bin/bash /tmp/init_ec2.sh > /tmp/init_ec2.sh.log && rm -f /tmp/init_ec2.sh &
# install_nginx.sh
curl -o /tmp/install_nginx.sh https://gist.github.com/pacojp/5704628/raw
nohup /bin/bash /tmp/install_nginx.sh > /tmp/install_nginx.sh.log && rm -f /tmp/install_nginx.sh &
# install_mysql_server.sh
curl -o /tmp/install_mysql_server.sh https://gist.github.com/pacojp/5707825/raw
nohup /bin/bash /tmp/install_mysql_server.sh > /tmp/install_mysql_server.sh.log && rm -f /tmp/install_mysql_server.sh &
# install_wordpress.sh
curl -o /tmp/install_wordpress.sh https://gist.github.com/pacojp/5721025/raw
/bin/bash /tmp/install_wordpress.sh example.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment