diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-03 14:52:24 -0300 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-03 14:52:24 -0300 | 
| commit | 6b42c1987fe568b1331ce369f0426c3dab76953a (patch) | |
| tree | 7935755752432a0e73c115ac9ce5634c14492fdf /Vagrantfile | |
| parent | e938bde4c45f3ea63c98a64eff1eaefa654a5417 (diff) | |
| download | puppet-bootstrap-6b42c1987fe568b1331ce369f0426c3dab76953a.tar.gz puppet-bootstrap-6b42c1987fe568b1331ce369f0426c3dab76953a.tar.bz2  | |
Adding a custom provision script
Diffstat (limited to 'Vagrantfile')
| -rw-r--r-- | Vagrantfile | 4 | 
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|  | 
