diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2015-07-06 13:51:59 -0300 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2015-07-06 13:51:59 -0300 | 
| commit | 47c83e6fc82afd55110c9184234e31dc751e5347 (patch) | |
| tree | 62ca4e83375c166858421e5ee934d3fa068ebebf /Vagrantfile | |
| parent | 6f0a560671461c477ea3868fe10abcd37163aff5 (diff) | |
| download | puppet-bootstrap-47c83e6fc82afd55110c9184234e31dc751e5347.tar.gz puppet-bootstrap-47c83e6fc82afd55110c9184234e31dc751e5347.tar.bz2  | |
Vagrant provisioning fixes
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  | 
