diff options
author | ivan <ivan> | 2003-06-03 12:41:51 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-06-03 12:41:51 +0000 |
commit | e6e566f0679145e2047b77291b65031ab0540bc8 (patch) | |
tree | 65f95c250c749c3f11fdcfaa552235bdb9c9bfd0 | |
parent | 861d622575ae8274d4171dd029432fd9be29c2ca (diff) |
minor update to cp export - eliminate redundant "host" parameter
-rw-r--r-- | FS/FS/part_export.pm | 1 | ||||
-rw-r--r-- | FS/FS/part_export/cp.pm | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/FS/FS/part_export.pm b/FS/FS/part_export.pm index aeb1fdfc3..5a3e02f80 100644 --- a/FS/FS/part_export.pm +++ b/FS/FS/part_export.pm @@ -692,7 +692,6 @@ tie my %cyrus_options, 'Tie::IxHash', ; tie my %cp_options, 'Tie::IxHash', - 'host' => { label=>'Hostname' }, 'port' => { label=>'Port number' }, 'username' => { label=>'Username' }, 'password' => { label=>'Password' }, diff --git a/FS/FS/part_export/cp.pm b/FS/FS/part_export/cp.pm index d998c1d95..c37dc3b98 100644 --- a/FS/FS/part_export/cp.pm +++ b/FS/FS/part_export/cp.pm @@ -42,7 +42,7 @@ sub cp_queue { 'job' => 'FS::part_export::cp::cp_command', }; $queue->insert( - $self->option('host'), + $self->machine, $self->option('port'), $self->option('username'), $self->option('password'), |