diff options
| author | Luke Kanies <luke@madstop.com> | 2008-03-07 12:09:46 -0600 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2008-03-07 12:09:46 -0600 |
| commit | e8029cc61a1956263935a0df469cc77b8e80a102 (patch) | |
| tree | e921ca8ff2db3c428753d2b47b655033bce16ae8 /lib/puppet | |
| parent | c955f6130d0920ef18a0b01450ac873b31f73b9e (diff) | |
Fixing the "tidy" type to use an option hash for specifying its parent class
Diffstat (limited to 'lib/puppet')
| -rwxr-xr-x | lib/puppet/type/tidy.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/type/tidy.rb b/lib/puppet/type/tidy.rb index dacf037ac..fe8bde9ab 100755 --- a/lib/puppet/type/tidy.rb +++ b/lib/puppet/type/tidy.rb @@ -1,5 +1,5 @@ module Puppet - newtype(:tidy, Puppet.type(:file)) do + newtype(:tidy, :parent => Puppet.type(:file)) do @doc = "Remove unwanted files based on specific criteria. Multiple criteria are OR'd together, so a file that is too large but is not old enough will still get tidied." |
