X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=FS%2Fbin%2Ffreeside-daily;h=a7c38d557adf80d82720849dbeb1f2451e263e4d;hb=0e7c29b192fff137d3b9167b29633a94f94b995f;hp=ee3cda63edfbac49ab42c533001d59293ea36383;hpb=29c296af24c09dc904f6fad51edbf3c5f2f085d3;p=freeside.git diff --git a/FS/bin/freeside-daily b/FS/bin/freeside-daily index ee3cda63e..a7c38d557 100755 --- a/FS/bin/freeside-daily +++ b/FS/bin/freeside-daily @@ -12,6 +12,14 @@ getopts("p:a:d:vl:sy:nmrkg:u", \%opt); my $user = shift or die &usage; adminsuidsetup $user; +#you can skip this by not having a NetworkMonitoringSystem configured +use FS::Cron::nms_report qw(nms_report); +nms_report(%opt); + +#no way to skip this yet, but should be harmless/quick +use FS::Cron::expire_banned_pay qw(expire_banned_pay); +expire_banned_pay(%opt); + #you can skip this by setting the disable_cron_billing config use FS::Cron::bill qw(bill); bill(%opt); @@ -24,6 +32,9 @@ reconcile_breakage(%opt); use FS::Cron::upload qw(upload); upload(%opt); +use FS::Cron::set_lata_have_usage qw(set_lata_have_usage); +set_lata_have_usage(%opt); + # Send alerts about upcoming credit card expiration. use FS::Cron::alert_expiration qw(alert_expiration); my $conf = new FS::Conf; @@ -47,13 +58,18 @@ if ( $opt{u} ) { } #you can skip this just by not having the config -use FS::Cron::backup qw(backup_scp); -backup_scp(); +use FS::Cron::backup qw(backup); +backup(); #same use FS::Cron::rt_tasks qw(rt_escalate); rt_escalate(%opt); +my $deldir = "$FS::UID::cache_dir/cache.$FS::UID::datasrc/"; +unlink <${deldir}.invoice*>; +unlink <${deldir}.letter*>; +unlink <${deldir}.CGItemp*>; + ### # subroutines ###