Skip to content

Commit 420cd12

Browse files
committed
clean up vagrant folder
1 parent ec09e0b commit 420cd12

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

vagrant/scripts/setup-node.sh

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
apt-get install gcc make build-essential -y
22
apt-get install -y curl
33
apt-get install -y git
4-
curl --silent --location https://deb.nodesource.com/setup_4.x | sudo bash -
5-
apt-get install -y nodejs
4+
# curl --silent --location https://deb.nodesource.com/setup_4.x | sudo bash -
5+
# apt-get install -y nodejs
6+
su vagrant
7+
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.27.1/install.sh | bash
8+
nvm install v0.10
9+
nvm install v0.12
10+
nvm install v4.1
11+
12+
613

vagrant/setup.sh

-7
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,6 @@ $include "/vagrant/scripts/base.sh"
99
#COMMENT OUT OR IN LINES AS APPROPRIATE
1010
INCLUDED_TECH=()
1111
INCLUDED_TECH+=("node")
12-
#INCLUDED_TECH+=("mongodb")
13-
#INCLUDED_TECH+=("meteor")
14-
#INCLUDED_TECH+=("redis")
15-
#INCLUDED_TECH+=("apache")
16-
#INCLUDED_TECH+=("nginx")
17-
#INCLUDED_TECH+=("mysql")
18-
#INCLUDED_TECH+=("php")
1912

2013
SCRIPT_LOCATION="/vagrant/scripts/setup-"
2114

0 commit comments

Comments
 (0)