aboutsummaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-02-14 12:15:10 -0200
committerSilvio Rhatto <rhatto@riseup.net>2014-02-14 12:15:10 -0200
commite9775dafa35ae9f7e524c041b655c1f106a8cc50 (patch)
treeddcde5ddbc377a9b5abcb3bded325af1d9fefb83 /Vagrantfile
parentfd05ba9ed70a778bad67737601ff1433c1710294 (diff)
downloadpuppet-bootstrap-e9775dafa35ae9f7e524c041b655c1f106a8cc50.tar.gz
puppet-bootstrap-e9775dafa35ae9f7e524c041b655c1f106a8cc50.tar.bz2
Fixing shell provisioner
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 4748efd..6c74ddb 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -6,7 +6,7 @@ Vagrant::Config.run do |config|
config.vm.box = "wheezy"
# Shell provisioner to keep the system updated.
- config.vm.provision :shell, :inline => "sudo apt-get update && sudo apt-get dist-upgrade -y && sudo apt-get autoremove && sudo apt-get clean"
+ config.vm.provision :shell, :inline => "sudo apt-get update && sudo apt-get dist-upgrade -y && sudo apt-get autoremove -y && sudo apt-get clean"
# Enable provisioning with Puppet stand alone.
config.vm.provision :puppet do |puppet|