Last active
November 13, 2015 13:57
-
-
Save pcote/424be8dad47988d9befb to your computer and use it in GitHub Desktop.
Generic provisioning script for a setting up a 64 bit Ubuntu box. (built with Trusty in mind)
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/sh | |
function install_packages { | |
sudo apt-get install -y nginx build-essential python3-dev libssl-dev openssl python3-pip fail2ban git mysql-server | |
sudo pip3 install -r requirements.txt | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment