diff options
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 3 |
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 |