diff options
author | ivan <ivan> | 2011-04-22 23:27:48 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-04-22 23:27:48 +0000 |
commit | bc63f0e47edf83207dc857f7f5da05193e1543e8 (patch) | |
tree | efc9be92b513b471651d8e23809ea22d52c6f479 /bin/billco-upload | |
parent | c100b2bd8c2be06879ca5b8e5217efd80b8dce63 (diff) |
wtxs upload changes, RT#12326
Diffstat (limited to 'bin/billco-upload')
-rw-r--r-- | bin/billco-upload | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/billco-upload b/bin/billco-upload new file mode 100644 index 000000000..4efc18005 --- /dev/null +++ b/bin/billco-upload @@ -0,0 +1,14 @@ +#!/usr/bin/perl + +use FS::UID qw(adminsuidsetup); +use FS::Cron::upload; + +adminsuidsetup shift or die "usage: billco-upload username agentnum\n"; +my $agentnum = shift or die "usage: billco-upload username agentnum\n"; + +FS::Cron::upload::billco_upload( 'agentnum' => $agentnum + 'v' => 1, + 'l' => 2, + ); + +1; |