X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2Fbin%2Ffreeside-daily;h=e0c555f7bd83ef4bbf663bf4535c7b5ef0b11064;hb=573456c7fb09e9a127ae169df9fc630cab829fa0;hp=cb018d1dfd72f2c30b1e1fe87a7ad2f70ba91154;hpb=dd14eb402e7ed67d1f5ad63415bf169a3e79135b;p=freeside.git diff --git a/FS/bin/freeside-daily b/FS/bin/freeside-daily index cb018d1df..e0c555f7b 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; @@ -24,6 +24,10 @@ $log->info('start'); use FS::Cron::nms_report qw(nms_report); nms_report(%opt); +#you can skip this by not having any vitelity exports configured +use FS::Cron::lnp_vitelity qw(lnp_vitelity); +lnp_vitelity(%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); @@ -44,6 +48,10 @@ reconcile_breakage(%opt); use FS::Cron::upload qw(upload); upload(%opt); +#this only takes effect if WA sales taxes are enabled +use FS::Cron::tax_rate_update qw(tax_rate_update); +tax_rate_update(%opt); + use FS::Cron::set_lata_have_usage qw(set_lata_have_usage); set_lata_have_usage(%opt); @@ -79,21 +87,25 @@ pay_batch_receive(%opt); use FS::Cron::export_batch qw(export_batch_submit); export_batch_submit(%opt); -#you can skip this by not having the config -use FS::Cron::agent_email qw(agent_email); -agent_email(%opt); +#does nothing unless there are users with subscribed searches +use FS::Cron::send_subscribed qw(send_subscribed); +send_subscribed(%opt); + +#does nothing unless quotation_disable_after_days is set. +use FS::Cron::disable_quotation qw(disable_quotation); +disable_quotation(); #clears out cacti imports & deletes select database cache files 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(); +cleanup( quiet => !$opt{'v'} ); $log->info('finish'); @@ -111,7 +123,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"; } ### @@ -167,6 +179,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