summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2002-05-16 14:27:58 +0000
committerivan <ivan>2002-05-16 14:27:58 +0000
commitda311364707d64a2188cb959b3779178563d0ac8 (patch)
tree5e6af279289db8d71caf9865a4691a0a423a7760
parent6c22d1f804ed99ecae591af6483a326e1c825560 (diff)
add (stub) bsdshell and textradius exports
-rw-r--r--FS/MANIFEST16
-rw-r--r--eg/export_template.pm4
2 files changed, 12 insertions, 8 deletions
diff --git a/FS/MANIFEST b/FS/MANIFEST
index a95470bb4..4c6d243df 100644
--- a/FS/MANIFEST
+++ b/FS/MANIFEST
@@ -49,11 +49,13 @@ FS/part_bill_event.pm
FS/export_svc.pm
FS/part_export.pm
FS/part_export_option.pm
-FS/part_export/infostreet.pm
-FS/part_export/sqlradius.pm
-FS/part_export/cyrus.pm
+FS/part_export/bsdshell.pm
FS/part_export/cp.pm
+FS/part_export/cyrus.pm
+FS/part_export/infostreet.pm
FS/part_export/shellcommands.pm
+FS/part_export/sqlradius.pm
+FS/part_export/textradius.pm
FS/part_export/vpopmail.pm
FS/part_pkg.pm
FS/part_pop_local.pm
@@ -110,11 +112,13 @@ t/part_bill_event.t
t/export_svc.t
t/part_export.t
t/part_export_option.t
-t/part_export-infostreet.t
-t/part_export-sqlradius.t
-t/part_export-cyrus.t
+t/part_export-bsdshell.t
t/part_export-cp.t
+t/part_export-cyrus.t
+t/part_export-infostreet.t
t/part_export-shellcommands.t
+t/part_export-sqlradius.t
+t/part_export-textradius.t
t/part_export-vpopmail.t
t/part_pkg.t
t/part_pop_local.t
diff --git a/eg/export_template.pm b/eg/export_template.pm
index 1d441bda1..00942fd12 100644
--- a/eg/export_template.pm
+++ b/eg/export_template.pm
@@ -9,7 +9,7 @@ sub rebless { shift; }
sub _export_insert {
my($self, $svc_something) = (shift, shift);
- $err_or_queue = $self->myexport_queue( $svc_acct->svcnum, 'insert',
+ $err_or_queue = $self->myexport_queue( $svc_something->svcnum, 'insert',
$svc_something->username, $svc_something->_password );
ref($err_or_queue) ? '' : $err_or_queue;
}
@@ -26,7 +26,7 @@ sub _export_replace {
sub _export_delete {
my( $self, $svc_something ) = (shift, shift);
- $err_or_queue = $self->myexport_queue( $svc_acct->svcnum,
+ $err_or_queue = $self->myexport_queue( $svc_something->svcnum,
'delete', $svc_something->username );
ref($err_or_queue) ? '' : $err_or_queue;
}