diff options
author | ivan <ivan> | 2011-04-22 23:27:46 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-04-22 23:27:46 +0000 |
commit | 1c7c808fd3560ef18f4266432e8185fcfffca4aa (patch) | |
tree | 6e11e9cc0238fbff15fdee18e008fb53f4014c67 /bin | |
parent | c1a28e3ac70c91efe10d2e2bbb5eef5906b7ee49 (diff) |
wtxs upload changes, RT#12326
Diffstat (limited to 'bin')
-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; |