From: ivan Date: Tue, 29 Dec 2009 01:40:51 +0000 (+0000) Subject: don't skip vacuuming when using -k, RT#5258 X-Git-Tag: freeside_1_7_4~10 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=6b358ff9f112b573981acf7b392f11d20431724f;p=freeside.git don't skip vacuuming when using -k, RT#5258 --- diff --git a/FS/bin/freeside-daily b/FS/bin/freeside-daily index cbcbc42fe..1876dc708 100755 --- a/FS/bin/freeside-daily +++ b/FS/bin/freeside-daily @@ -17,15 +17,13 @@ bill(%opt); #what to do about the below when using -m? that is the question. unless ( $opt{k} ) { - use FS::Cron::notify qw(notify_flat_delay); notify_flat_delay(%opt); - - use FS::Cron::vacuum qw(vacuum); - vacuum(); - } +use FS::Cron::vacuum qw(vacuum); +vacuum(); + #you can skip this just by not having the config use FS::Cron::backup qw(backup_scp); backup_scp(); @@ -93,7 +91,7 @@ the bill and collect methods of a cust_main object. See L. -r: Multi-process mode dry run option - -k: skip notify_flat_delay and vacuum + -k: skip notify_flat_delay user: From the mapsecrets file - see config.html from the base documentation