diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-02-14 12:15:10 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-02-14 12:15:10 -0200 |
commit | e9775dafa35ae9f7e524c041b655c1f106a8cc50 (patch) | |
tree | ddcde5ddbc377a9b5abcb3bded325af1d9fefb83 /Vagrantfile | |
parent | fd05ba9ed70a778bad67737601ff1433c1710294 (diff) | |
download | puppet-bootstrap-e9775dafa35ae9f7e524c041b655c1f106a8cc50.tar.gz puppet-bootstrap-e9775dafa35ae9f7e524c041b655c1f106a8cc50.tar.bz2 |
Fixing shell provisioner
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 2 |
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| |