fall back to password changing in the case of blank suspension/unsuspension commands...
authorivan <ivan>
Mon, 10 May 2004 13:17:23 +0000 (13:17 +0000)
committerivan <ivan>
Mon, 10 May 2004 13:17:23 +0000 (13:17 +0000)
FS/FS/part_export/shellcommands.pm

index 4431cc0..4f201cf 100644 (file)
@@ -176,14 +176,25 @@ sub _export_delete {
 
 sub _export_suspend {
   my($self) = shift;
-  $self->_export_command('suspend', @_);
+  $self->_export_command_or_super('suspend', @_);
 }
 
 sub _export_unsuspend {
   my($self) = shift;
-  $self->_export_command('unsuspend', @_);
+  $self->_export_command_or_super('unsuspend', @_);
 }
 
+sub _export_command_or_super {
+  my($self, $action) = (shift, shift);
+  if ( $self->option($action) =~ /^\s*$/ ) {
+    my $method = "SUPER::_export_$action";
+    $self->$method(@_);
+  } else {
+    $self->_export_command($action, @_);
+  }
+};
+
+
 sub _export_command {
   my ( $self, $action, $svc_acct) = (shift, shift, shift);
   my $command = $self->option($action);