diff options
author | Jesse Wolfe <jes5199@gmail.com> | 2010-09-21 13:19:11 -0700 |
---|---|---|
committer | Markus Roberts <Markus@reality.com> | 2010-09-22 21:11:28 -0700 |
commit | 06bf566cf71b5a690c61887dff0538922b026f64 (patch) | |
tree | 7537c725cf336eee498c72b1dce2d59e05347a3a | |
parent | bba04e08ccf631291a042cca5985591899eca869 (diff) | |
download | puppet-06bf566cf71b5a690c61887dff0538922b026f64.tar.gz puppet-06bf566cf71b5a690c61887dff0538922b026f64.tar.xz puppet-06bf566cf71b5a690c61887dff0538922b026f64.zip |
[#4787] Missing require causing failure
This code was using a constant that might not always be loaded.
-rwxr-xr-x | lib/puppet/type/tidy.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/puppet/type/tidy.rb b/lib/puppet/type/tidy.rb index 64a7a1a88..65cc077cf 100755 --- a/lib/puppet/type/tidy.rb +++ b/lib/puppet/type/tidy.rb @@ -1,5 +1,6 @@ Puppet::Type.newtype(:tidy) do require 'puppet/file_serving/fileset' + require 'puppet/file_bucket/dipper' @doc = "Remove unwanted files based on specific criteria. Multiple criteria are OR'd together, so a file that is too large but is not |