summaryrefslogtreecommitdiff
path: root/FS/bin/freeside-queued
diff options
context:
space:
mode:
authorivan <ivan>2002-03-20 21:31:49 +0000
committerivan <ivan>2002-03-20 21:31:49 +0000
commitf1038a648b3d53db925b23519e7cd2a30c6837ed (patch)
treecda6c30496db688ed3fd702d111a76bc2c6d2e82 /FS/bin/freeside-queued
parent74f795a943560dfc03f46642536386ce36355bb4 (diff)
new export! infostreet and sqlradius provisioning switched over
(Bug #299 - doesn't close it, but all the groundwork is done) also removes non-transactional ICRADIUS export from svc_acct.export (closes: Bug#347)
Diffstat (limited to 'FS/bin/freeside-queued')
-rw-r--r--FS/bin/freeside-queued3
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/bin/freeside-queued b/FS/bin/freeside-queued
index 56475d059..c3c9240d2 100644
--- a/FS/bin/freeside-queued
+++ b/FS/bin/freeside-queued
@@ -15,6 +15,7 @@ use FS::queue;
use FS::cust_main;
use FS::svc_acct;
use Net::SSH 0.05;
+use FS::part_export;
my $pid_file = '/var/run/freeside-queued.pid';
@@ -85,7 +86,7 @@ while (1) {
my $eval = "&". $ljob->job. '(@args);';
warn "running $eval";
- eval $eval;
+ eval $eval; #throw away return value? suppose so
if ( $@ ) {
warn "job $eval failed";
my %hash = $ljob->hash;