X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2Fbin%2Ffreeside-daily;h=f1b7e58ec76b55bc6e62b192604fa7afba11e2cb;hp=8d195a8ca731a099df857f065143aea85c2810d0;hb=11bbf29de447fe39e9d7155fe280a0df70fa8c3c;hpb=bffe94d18041de995907fb8cc3fade4e8b20c241 diff --git a/FS/bin/freeside-daily b/FS/bin/freeside-daily index 8d195a8ca..f1b7e58ec 100755 --- a/FS/bin/freeside-daily +++ b/FS/bin/freeside-daily @@ -8,7 +8,7 @@ use FS::Log; &untaint_argv; #what it sounds like (eww) use vars qw(%opt); -getopts("p:a:d:vl:sy:nmrkg:o", \%opt); +getopts("p:a:d:vl:sy:nmrkg:ox", \%opt); my $user = shift or die &usage; adminsuidsetup $user; @@ -55,14 +55,6 @@ tax_rate_update(%opt); use FS::Cron::set_lata_have_usage qw(set_lata_have_usage); set_lata_have_usage(%opt); -# we used to send alerts about upcoming credit card expiration here -my $conf = new FS::Conf; -if($conf->exists('alert_expiration')) { - warn "WARNING: the alert_expiration option is obsolete. If you ran - freeside-upgrade, it should have configured credit card expiration alerts - as billing events.\n"; -} - #what to do about the below when using -m? that is the question. #you don't want to skip this, besides, it should be cheap @@ -100,9 +92,9 @@ use FS::Cron::cleanup qw( cleanup cleanup_before_backup ); cleanup_before_backup(); #backup should be last -#you can skip this just by not having the config +#you can skip this just by not having the config (or with the -x option) use FS::Cron::backup qw(backup); -backup(); +backup() unless $opt{'x'}; #except we'd rather not start cleanup jobs until the backup is done cleanup( quiet => !$opt{'v'} ); @@ -123,7 +115,7 @@ sub untaint_argv { } sub usage { - die "Usage:\n\n freeside-daily [ -d 'date' ] [ -y days ] [ -a agentnum,agentnum,... ] [ -s ] [ -v ] [ -l level ] [ -m ] [ -k ] user [ custnum custnum ... ]\n"; + die "Usage:\n\n freeside-daily [ -d 'date' ] [ -y days ] [ -a agentnum,agentnum,... ] [ -s ] [ -v ] [ -l level ] [ -m ] [ -k ] [ -x ] user [ custnum custnum ... ]\n"; } ### @@ -179,6 +171,8 @@ the bill and collect methods of a cust_main object. See L. -k: skip notify_flat_delay + -x: skip backup + user: Typically "fs_daily" custnum: if one or more customer numbers are specified, only bills those