Last active
August 11, 2018 03:09
-
-
Save possibilities/c773e5d3655eed957f6e59ec2343c3ae to your computer and use it in GitHub Desktop.
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 | |
set -e | |
cd /provision | |
/provision/provision.system.sh | |
/bin/su -c '/provision/provision.user.sh' mike |
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 | |
set -e | |
apt-get update | |
apt-get upgrade --yes | |
apt-get install --yes git | |
apt-get install --yes curl | |
apt-get install --yes tmux | |
apt-get install --yes vim | |
curl -sL https://deb.nodesource.com/setup_8.x -o nodesource_setup.sh | |
bash nodesource_setup.sh | |
apt-get install --yes nodejs |
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 | |
set -e | |
cd $HOME | |
echo TODO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment