diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-05-15 00:11:01 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-05-15 00:11:01 +0000 |
commit | 28f7d6c7ebd56da3014464c82c73a4f98f3406ea (patch) | |
tree | 0fed5116baef8f988eb88617df2fc1a6e20c97e0 /lib/puppet/configuration.rb | |
parent | d9f6f418639fb50297a9a0b5415ea57b5f2f303e (diff) | |
download | puppet-28f7d6c7ebd56da3014464c82c73a4f98f3406ea.tar.gz puppet-28f7d6c7ebd56da3014464c82c73a4f98f3406ea.tar.xz puppet-28f7d6c7ebd56da3014464c82c73a4f98f3406ea.zip |
Fixing #569 - I have added a dynamic facts option to choose which facts will be ignored.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2516 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/configuration.rb')
-rw-r--r-- | lib/puppet/configuration.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/puppet/configuration.rb b/lib/puppet/configuration.rb index c6ca53d98..3b90916c6 100644 --- a/lib/puppet/configuration.rb +++ b/lib/puppet/configuration.rb @@ -396,7 +396,11 @@ module Puppet change or if the server changes." ], :downcasefacts => [false, - "Whether facts should be made all lowercase when sent to the server."] + "Whether facts should be made all lowercase when sent to the server."], + :dynamicfacts => ["memorysize,memoryfree,swapsize,swapfree", + "Facts that are dynamic; these facts will be ignored when deciding whether + changed facts should result in a recompile. Multiple facts should be + comma-separated."] ) self.setdefaults(:puppetd, |