]> git.mxchange.org Git - payara-vagrant.git/commitdiff
added flags to make provisioning less noisy
authorMike Croft <backtotheoldhouse@gmail.com>
Mon, 27 Apr 2015 20:39:35 +0000 (21:39 +0100)
committerMike Croft <backtotheoldhouse@gmail.com>
Mon, 27 Apr 2015 20:39:35 +0000 (21:39 +0100)
Vagrantfile

index 47ca252ea5400b7b1e9da25b89411ad33a54b888..e806dd73754c66e6d0e78d76eebe45856b2a7389 100644 (file)
@@ -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