Create guest_setup.sh

This commit is contained in:
William Mantly 2017-10-26 11:55:19 -04:00 committed by GitHub
parent f01049df74
commit 6e034f26c3

18
guest_setup.sh Normal file
View File

@ -0,0 +1,18 @@
apt update;
apt upgrade -y;
wget https://github.com/wmantly/crunner/blob/master/crunner?raw=true -O /usr/local/bin/crunner;
chmod +x /usr/local/bin/crunner;
apt install git nano wget python3-dev python3-pip;
echo "
#!/bin/bash;
export NODE_PATH='/usr/local/lib/node_modules:$NODE_PATH';
export TERM=xterm-256color;
cd ~;
crunner &;
exit 0;
" > /opt/bytedev.sh