From ee94b69d8d77032ad4d226b186e1ea5c846d141c Mon Sep 17 00:00:00 2001 From: ninjaflame555 Date: Sun, 27 Apr 2014 02:03:05 -0400 Subject: [PATCH] Further explains what the installation is doing. --- vagrant.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/vagrant.sh b/vagrant.sh index a714aafaf1..cc04177611 100644 --- a/vagrant.sh +++ b/vagrant.sh @@ -27,6 +27,7 @@ function autostart_habitrpg { echo Setting up HabitRPG... echo cd /vagrant >> /home/vagrant/.bashrc +echo Updating repositories... apt-get update -qq echo Installing Mongodb... @@ -37,8 +38,11 @@ apt-get install -qq git echo Installing npm... apt-get install -qq python-software-properties +echo Adding repository node.js... apt-add-repository -y ppa:chris-lea/node.js +echo Updating repositories... apt-get update -qq +echo Installing node.js apt-get install -qq nodejs cd /vagrant @@ -52,6 +56,7 @@ npm install echo Seeding Mongodb... node ./src/seed.js -# Uncomment this line to autostart the habitrpg server when provisioning +# Uncomment both lines to autostart the habitrpg server when provisioning +# echo Starting HabitRPG server... # autostart_habitrpg