Skip to content

Instantly share code, notes, and snippets.

@possibilities
Last active August 11, 2018 03:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save possibilities/c773e5d3655eed957f6e59ec2343c3ae to your computer and use it in GitHub Desktop.
Save possibilities/c773e5d3655eed957f6e59ec2343c3ae to your computer and use it in GitHub Desktop.
#!/bin/sh
set -e
cd /provision
/provision/provision.system.sh
/bin/su -c '/provision/provision.user.sh' mike
#!/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
#!/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