aboutsummaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-03-03 14:52:24 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-03-03 14:52:24 -0300
commit6b42c1987fe568b1331ce369f0426c3dab76953a (patch)
tree7935755752432a0e73c115ac9ce5634c14492fdf /Vagrantfile
parente938bde4c45f3ea63c98a64eff1eaefa654a5417 (diff)
downloadpuppet-bootstrap-6b42c1987fe568b1331ce369f0426c3dab76953a.tar.gz
puppet-bootstrap-6b42c1987fe568b1331ce369f0426c3dab76953a.tar.bz2
Adding a custom provision script
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 29e7378..5a15585 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -5,8 +5,8 @@ Vagrant::Config.run do |config|
# Every Vagrant virtual environment requires a box to build off of.
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 -y && sudo apt-get clean"
+ # Shell provisioner to setup basic environment.
+ config.vm.provision :shell, :inline => "/vagrant/puppet/bin/provision"
# Enable provisioning with Puppet stand alone.
config.vm.provision :puppet do |puppet|