Clean-up provisioning output

This commit is contained in:
Ilya Dmitrichenko 2015-10-02 06:24:17 +01:00
parent 3fed4efb8d
commit f2f7dc4479
1 changed files with 2 additions and 4 deletions

View File

@ -6,13 +6,10 @@ $script = <<SCRIPT
sudo apt-get update
sudo apt-get install -y unzip curl wget
# Install Docker
sudo curl -sSL https://get.docker.com/ | sh
# Download Nomad
echo Fetching Nomad...
cd /tmp/
wget https://dl.bintray.com/mitchellh/nomad/nomad_0.1.0_linux_amd64.zip -O nomad.zip
curl -sSL https://dl.bintray.com/mitchellh/nomad/nomad_0.1.0_linux_amd64.zip -o nomad.zip
echo Installing Nomad...
unzip nomad.zip
@ -28,6 +25,7 @@ Vagrant.configure(2) do |config|
config.vm.box = "puphpet/ubuntu1404-x64"
config.vm.hostname = "nomad"
config.vm.provision "shell", inline: $script, privileged: false
config.vm.provision "docker" # Just install it
# Increase memory for Parallels Desktop
config.vm.provider "parallels" do |p, o|