summaryrefslogtreecommitdiffstats
path: root/lib/puppet
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2008-03-07 12:09:46 -0600
committerLuke Kanies <luke@madstop.com>2008-03-07 12:09:46 -0600
commite8029cc61a1956263935a0df469cc77b8e80a102 (patch)
treee921ca8ff2db3c428753d2b47b655033bce16ae8 /lib/puppet
parentc955f6130d0920ef18a0b01450ac873b31f73b9e (diff)
Fixing the "tidy" type to use an option hash for specifying its parent class
Diffstat (limited to 'lib/puppet')
-rwxr-xr-xlib/puppet/type/tidy.rb2
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."