make puppet runs a little less noisy for testing

This commit is contained in:
Dan Bode
2012-12-04 16:28:32 -08:00
parent 2d678623e0
commit 6f5076e501
2 changed files with 7 additions and 5 deletions

6
Vagrantfile vendored
View File

@@ -135,13 +135,15 @@ Vagrant::Config.run do |config|
puppet.manifests_path = 'manifests' puppet.manifests_path = 'manifests'
puppet.manifest_file = "setup/#{os_name}.pp" puppet.manifest_file = "setup/#{os_name}.pp"
puppet.module_path = 'modules' puppet.module_path = 'modules'
puppet.options = ['--verbose', '--show_diff', "--certname=#{node_name}"] #puppet.options = ['--verbose', '--show_diff', "--certname=#{node_name}"]
puppet.options = ["--certname=#{node_name}"]
end end
agent.vm.provision :puppet do |puppet| agent.vm.provision :puppet do |puppet|
puppet.manifests_path = 'manifests' puppet.manifests_path = 'manifests'
puppet.manifest_file = 'site.pp' puppet.manifest_file = 'site.pp'
puppet.module_path = 'modules' puppet.module_path = 'modules'
puppet.options = ['--verbose', '--show_diff', "--certname=#{node_name}"] #puppet.options = ['--verbose', '--show_diff', "--certname=#{node_name}"]
puppet.options = ["--certname=#{node_name}"]
end end
end end
end end

View File

@@ -6,9 +6,9 @@
####### shared variables ################## ####### shared variables ##################
Exec { #Exec {
logoutput => true, # logoutput => true,
} #}
# database config # database config
$mysql_root_password = 'mysql_root_password' $mysql_root_password = 'mysql_root_password'