From 06bf566cf71b5a690c61887dff0538922b026f64 Mon Sep 17 00:00:00 2001 From: Jesse Wolfe Date: Tue, 21 Sep 2010 13:19:11 -0700 Subject: [#4787] Missing require causing failure This code was using a constant that might not always be loaded. --- lib/puppet/type/tidy.rb | 1 + 1 file changed, 1 insertion(+) 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 -- cgit