Skip to content

Instantly share code, notes, and snippets.

@mattdeboard
Created June 5, 2014 15:14
Show Gist options
  • Select an option

  • Save mattdeboard/1cca93c85adf99b7ab50 to your computer and use it in GitHub Desktop.

Select an option

Save mattdeboard/1cca93c85adf99b7ab50 to your computer and use it in GitHub Desktop.
cfg.vm.provision "puppet_server" do |p|
p.puppet_server = 'puppet.local'
p.facter = {
:pluginsync => true,
:ssldir => "/etc/puppet/ssl",
}
p.puppet_node = "dev.local"
p.client_cert_path = "files/puppet_keys/dev.local/certs/dev.local.pem"
p.client_private_key_path = "files/puppet_keys/dev.local/private_keys/dev.local.pem"
p.options = "-t --environment vagrant"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment