diff options
| author | James Turnbull <james@lovedthanlost.net> | 2010-11-14 09:16:59 +1100 |
|---|---|---|
| committer | James Turnbull <james@lovedthanlost.net> | 2010-11-14 09:16:59 +1100 |
| commit | b753d836c5ea18333a1199b20b5c495f562f2af4 (patch) | |
| tree | 00ad72b91427a93e0902777b10c40d34b1c24ac5 /lib/puppet | |
| parent | 275a224ee245577c4213b3a21bf1e98301740a4e (diff) | |
| download | puppet-b753d836c5ea18333a1199b20b5c495f562f2af4.tar.gz puppet-b753d836c5ea18333a1199b20b5c495f562f2af4.tar.xz puppet-b753d836c5ea18333a1199b20b5c495f562f2af4.zip | |
Fixed #5288 - Changed report default to true
Diffstat (limited to 'lib/puppet')
| -rw-r--r-- | lib/puppet/defaults.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/defaults.rb b/lib/puppet/defaults.rb index 7ae553827..50c5d8c09 100644 --- a/lib/puppet/defaults.rb +++ b/lib/puppet/defaults.rb @@ -116,7 +116,7 @@ module Puppet :catalog_terminus => ["compiler", "Where to get node catalogs. This is useful to change if, for instance, you'd like to pre-compile catalogs and store them in memcached or some other easily-accessed store."], :facts_terminus => { - :default => Puppet.application_name.to_s == "master" ? 'yaml' : 'facter', + :default => Puppet.application_name.to_s == "master" ? 'yaml' : 'facter', :desc => "The node facts terminus.", :hook => proc do |value| require 'puppet/node/facts' @@ -599,7 +599,7 @@ module Puppet :inventory_port => ["$masterport", "The port to communicate with the inventory_server." ], - :report => [false, + :report => [true, "Whether to send reports after every transaction." ], :graph => [false, "Whether to create dot graph files for the different |
