From 49b460eee3c4b78200858e589e96386c7bd2c501 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20M=C3=A9tais?= Date: Fri, 30 Dec 2016 22:14:30 +0800 Subject: [PATCH] Update the vagrant box and Node version --- Vagrantfile | 2 +- server_config/server_install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 43b7a13..e33ddd1 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,6 +1,6 @@ Vagrant.configure("2") do |config| - config.vm.box = "ubuntu/precise64" + config.vm.box = "ubuntu/trusty64" config.vm.network :private_network, ip: "10.10.10.10" config.ssh.forward_agent = true diff --git a/server_config/server_install.sh b/server_config/server_install.sh index 5cca95b..521686a 100644 --- a/server_config/server_install.sh +++ b/server_config/server_install.sh @@ -6,7 +6,7 @@ sudo apt-get install lsb-release libfontconfig1 libfreetype6 libjpeg-dev -y --fo sudo apt-get install curl git software-properties-common build-essential make g++ -y --force-yes > /dev/null 2>&1 # Installation of NodeJS -curl -sL https://deb.nodesource.com/setup_0.12 | sudo -E bash - +curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash - sudo apt-get install -y nodejs > /dev/null 2>&1 source ~/.profile