This commit was generated by cvs2svn to compensate for changes in r8593,
[freeside.git] / FS / bin / freeside-daily
index 119f93a..1be98ac 100755 (executable)
@@ -12,9 +12,18 @@ getopts("p:a:d:vl:sy:nmrkg:", \%opt);
 my $user = shift or die &usage;
 adminsuidsetup $user;
 
+#you can skip this by setting the disable_cron_billing config
 use FS::Cron::bill qw(bill);
 bill(%opt);
 
+#you can skip this just by not having the config
+use FS::Cron::breakage qw(reconcile_breakage);
+reconcile_breakage(%opt);
+
+#you can skip this just by not having the config
+use FS::Cron::upload qw(upload);
+upload(%opt);
+
 # Send alerts about upcoming credit card expiration.
 use FS::Cron::alert_expiration qw(alert_expiration);
 my $conf = new FS::Conf;