From 420cd12c60c4ee9f2359f3a054827f4fdd9474f6 Mon Sep 17 00:00:00 2001 From: Keegan Brown Date: Mon, 5 Oct 2015 17:57:13 -0500 Subject: [PATCH] clean up vagrant folder --- vagrant/scripts/setup-node.sh | 11 +++++++++-- vagrant/setup.sh | 7 ------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/vagrant/scripts/setup-node.sh b/vagrant/scripts/setup-node.sh index de3bbb2..149aa0b 100755 --- a/vagrant/scripts/setup-node.sh +++ b/vagrant/scripts/setup-node.sh @@ -1,6 +1,13 @@ apt-get install gcc make build-essential -y apt-get install -y curl apt-get install -y git -curl --silent --location https://deb.nodesource.com/setup_4.x | sudo bash - -apt-get install -y nodejs +# curl --silent --location https://deb.nodesource.com/setup_4.x | sudo bash - +# apt-get install -y nodejs +su vagrant +wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.27.1/install.sh | bash +nvm install v0.10 +nvm install v0.12 +nvm install v4.1 + + diff --git a/vagrant/setup.sh b/vagrant/setup.sh index e51e282..1915326 100755 --- a/vagrant/setup.sh +++ b/vagrant/setup.sh @@ -9,13 +9,6 @@ $include "/vagrant/scripts/base.sh" #COMMENT OUT OR IN LINES AS APPROPRIATE INCLUDED_TECH=() INCLUDED_TECH+=("node") -#INCLUDED_TECH+=("mongodb") -#INCLUDED_TECH+=("meteor") -#INCLUDED_TECH+=("redis") -#INCLUDED_TECH+=("apache") -#INCLUDED_TECH+=("nginx") -#INCLUDED_TECH+=("mysql") -#INCLUDED_TECH+=("php") SCRIPT_LOCATION="/vagrant/scripts/setup-"