add (stub) bsdshell and textradius exports
authorivan <ivan>
Thu, 16 May 2002 14:27:58 +0000 (14:27 +0000)
committerivan <ivan>
Thu, 16 May 2002 14:27:58 +0000 (14:27 +0000)
FS/MANIFEST
eg/export_template.pm

index a95470b..4c6d243 100644 (file)
@@ -49,11 +49,13 @@ FS/part_bill_event.pm
 FS/export_svc.pm
 FS/part_export.pm
 FS/part_export_option.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/cp.pm
+FS/part_export/cyrus.pm
+FS/part_export/infostreet.pm
 FS/part_export/shellcommands.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
 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/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-cp.t
+t/part_export-cyrus.t
+t/part_export-infostreet.t
 t/part_export-shellcommands.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
 t/part_export-vpopmail.t
 t/part_pkg.t
 t/part_pop_local.t
index 1d441bd..00942fd 100644 (file)
@@ -9,7 +9,7 @@ sub rebless { shift; }
 
 sub _export_insert {
   my($self, $svc_something) = (shift, 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;
 }
     $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);
 
 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;
 }
     'delete', $svc_something->username );
   ref($err_or_queue) ? '' : $err_or_queue;
 }