diff --git a/demo/vagrant/Vagrantfile b/demo/vagrant/Vagrantfile index 87c97ae3e..8ed3319f0 100644 --- a/demo/vagrant/Vagrantfile +++ b/demo/vagrant/Vagrantfile @@ -9,14 +9,14 @@ sudo apt-get install -y unzip curl wget vim # Download Nomad echo Fetching Nomad... cd /tmp/ -curl -sSL https://releases.hashicorp.com/nomad/0.2.0/nomad_0.2.0_linux_amd64.zip -o nomad.zip +curl -sSL https://releases.hashicorp.com/nomad/0.2.1/nomad_0.2.1_linux_amd64.zip -o nomad.zip echo Installing Nomad... unzip nomad.zip sudo chmod +x nomad sudo mv nomad /usr/bin/nomad -sudo mkdir /etc/nomad.d +sudo mkdir -p /etc/nomad.d sudo chmod a+w /etc/nomad.d SCRIPT