X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2Fbin%2Ffreeside-daily;h=5de5c57dba395a9b35100e14ab3d756f741d60ed;hb=a816e075c54631250faed653d4ec7b69f727e93a;hp=6a542c7cd3aeaf878072c7161818623eb069353c;hpb=708b7bd0a10a5bf6be81ce21d946e05e046a00ed;p=freeside.git diff --git a/FS/bin/freeside-daily b/FS/bin/freeside-daily index 6a542c7cd..5de5c57db 100755 --- a/FS/bin/freeside-daily +++ b/FS/bin/freeside-daily @@ -12,6 +12,10 @@ getopts("p:a:d:vl:sy:nmrkg:u", \%opt); my $user = shift or die &usage; adminsuidsetup $user; +#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 +28,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,8 +54,13 @@ 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(); + +my $deldir = "$FS::UID::cache_dir/cache.$FS::UID::datasrc/"; +unlink <${deldir}.invoice*>; +unlink <${deldir}.letter*>; +unlink <${deldir}.CGItemp*>; ### # subroutines