From 71d823cd480f91a9a386b1e0d1ceb80f3dffafbd Mon Sep 17 00:00:00 2001 From: Mike Croft Date: Mon, 27 Apr 2015 21:39:35 +0100 Subject: [PATCH] added flags to make provisioning less noisy --- Vagrantfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 47ca252..e806dd7 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -79,12 +79,12 @@ Vagrant.configure(2) do |config| # # config.vm.provision "shell", inline: <<-SHELL - sudo apt-get -y update # Update the repos - sudo apt-get -y install openjdk-7-jdk # Install JDK 7 - sudo apt-get -y install unzip # Install unzip - wget http://bit.ly/1CGCtI9 -O temp.zip # Download Payara + sudo apt-get -qqy update # Update the repos + sudo apt-get -qqy install openjdk-7-jdk # Install JDK 7 + sudo apt-get -qqy install unzip # Install unzip + wget -q http://bit.ly/1CGCtI9 -O temp.zip # Download Payara sudo mkdir -p /opt/payara/startup # Make dirs for Payara - unzip temp.zip -d /opt/payara # unzip Payara to dir + unzip -qq temp.zip -d /opt/payara # unzip Payara to dir sudo cp /vagrant/payara_service-4.1.151 /opt/payara/startup/ sudo chmod +x /opt/payara/startup/payara_service-4.1.151 ln -s /opt/payara/startup/payara_service-4.1.151 /etc/init.d/payara -- 2.39.5