templates/vagrant/Vagrantfile.erb in vagrant-orchestrate-0.0.1 vs templates/vagrant/Vagrantfile.erb in vagrant-orchestrate-0.0.2
- old
+ new
@@ -14,10 +14,19 @@
<% if shell_inline -%>
config.vm.provision "shell", inline: "<%= shell_inline %>"
<% end -%>
<% end -%>
<% if provisioners.include? "puppet" -%>
+ <% if puppet_librarian_puppet -%>
+ config.librarian_puppet.placeholder_filename = ".PLACEHOLDER"
+ <% end -%>
config.vm.provision "puppet" do |puppet|
+ <% if puppet_librarian_puppet -%>
+ puppet.module_path = 'modules'
+ <% end -%>
+ <% if puppet_hiera -%>
+ puppet.hiera_config_path = 'hiera.yaml'
+ <% end -%>
end
<% end -%>
<% if communicator == "ssh" -%>
config.ssh.username = "<%= ssh_username %>"
<% if ssh_password -%>