-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathbootstrap.sh
42 lines (38 loc) · 1012 Bytes
/
bootstrap.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
export DEBIAN_FRONTEND=noninteractive
if [ -f "/home/vagrant/.packages_installed" ]
then
echo "packages already installed"
else
apt-get update
apt-get install -y mysql-server
apt-get install -y mysql-client
apt-get install -y libmysqlclient-dev
apt-get install -y openjdk-7-jdk
apt-get install -y git-core
apt-get install -y curl
apt-get install -y unzip
touch .packages_installed
fi
# Install rvm and jruby
if [ -d "/usr/local/rvm" ]
then
echo "rvm already installed"
else
curl -L https://get.rvm.io | bash -s stable
source /etc/profile.d/rvm.sh
rvm install jruby
usermod -a -G rvm vagrant
fi
# Install game machine
if [ -d "/home/vagrant/game_machine" ]
then
echo "game_machine already installed"
else
echo "installing game machine"
wget https://github.com/chrisochs/game_machine/archive/master.zip
unzip master.zip
mv game_machine-master game_machine
rm master.zip
#git clone https://github.com/chrisochs/game_machine
fi
echo "Game Machine install successful!"