diff options
author | James Turnbull <james@lovedthanlost.net> | 2010-04-24 04:03:56 +1000 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2010-04-24 12:08:51 +1000 |
commit | 1aa98a67f4eac1a9f2f46222375ef439eb6b0043 (patch) | |
tree | 6adc86db2ec3516d463f20b5c7f5697c0741e458 | |
parent | 44f6d64876f60cbed27e79ba0c64377ebcb9a07e (diff) | |
download | puppet-1aa98a67f4eac1a9f2f46222375ef439eb6b0043.tar.gz puppet-1aa98a67f4eac1a9f2f46222375ef439eb6b0043.tar.xz puppet-1aa98a67f4eac1a9f2f46222375ef439eb6b0043.zip |
Fixes #3653 - Changed default factpath value to better reflect plugins in modules
-rw-r--r-- | lib/puppet/defaults.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/defaults.rb b/lib/puppet/defaults.rb index d33353585..2bfb0be42 100644 --- a/lib/puppet/defaults.rb +++ b/lib/puppet/defaults.rb @@ -632,7 +632,7 @@ module Puppet # Central fact information. self.setdefaults(:main, - :factpath => {:default => "$vardir/facts/", + :factpath => {:default => "$vardir/lib/facter/:$vardir/facts", :desc => "Where Puppet should look for facts. Multiple directories should be colon-separated, like normal PATH variables.", :call_on_define => true, # Call our hook with the default value, so we always get the value added to facter. |