aboutsummaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2015-07-06 13:51:59 -0300
committerSilvio Rhatto <rhatto@riseup.net>2015-07-06 13:51:59 -0300
commit47c83e6fc82afd55110c9184234e31dc751e5347 (patch)
tree62ca4e83375c166858421e5ee934d3fa068ebebf /Vagrantfile
parent6f0a560671461c477ea3868fe10abcd37163aff5 (diff)
downloadpuppet-bootstrap-47c83e6fc82afd55110c9184234e31dc751e5347.tar.gz
puppet-bootstrap-47c83e6fc82afd55110c9184234e31dc751e5347.tar.bz2
Vagrant provisioning fixes
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 64f356d..116bb49 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -6,7 +6,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "jessie"
# Shell provisioner to setup basic environment.
- #config.vm.provision :shell, :inline => "/vagrant/puppet/bin/provision"
+ config.vm.provision :shell, :inline => "/vagrant/puppet/bin/provision"
# Enable provisioning with Puppet stand alone.
config.vm.provision :puppet do |puppet|
@@ -15,6 +15,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
puppet.module_path = "puppet/modules"
puppet.temp_dir = "/etc/puppet"
puppet.working_directory = "/etc/puppet"
+ puppet.hiera_config_path = "hiera.yaml"
end
# end