diff options
author | ivan <ivan> | 2004-02-13 04:03:59 +0000 |
---|---|---|
committer | ivan <ivan> | 2004-02-13 04:03:59 +0000 |
commit | 193118008312797e8188145138c6875ba506ff33 (patch) | |
tree | f9c3d905d8568100c8b1357b79b71af45dd47857 | |
parent | b0ab97d8a770c35cc41c05e8136ca6580c2b418e (diff) |
depend on Net::SSH 0.08 for non-blocking STDERR read
-rw-r--r-- | FS/FS/part_export/domain_shellcommands.pm | 2 | ||||
-rw-r--r-- | FS/FS/part_export/forward_shellcommands.pm | 2 | ||||
-rw-r--r-- | FS/FS/part_export/router.pm | 2 | ||||
-rw-r--r-- | FS/FS/part_export/shellcommands.pm | 2 | ||||
-rw-r--r-- | FS/FS/part_export/www_shellcommands.pm | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/FS/FS/part_export/domain_shellcommands.pm b/FS/FS/part_export/domain_shellcommands.pm index cf5603394..d295eece0 100644 --- a/FS/FS/part_export/domain_shellcommands.pm +++ b/FS/FS/part_export/domain_shellcommands.pm @@ -97,7 +97,7 @@ sub shellcommands_queue { } sub ssh_cmd { #subroutine, not method - use Net::SSH '0.07'; + use Net::SSH '0.08'; &Net::SSH::ssh_cmd( { @_ } ); } diff --git a/FS/FS/part_export/forward_shellcommands.pm b/FS/FS/part_export/forward_shellcommands.pm index f6fcb6062..5d3145715 100644 --- a/FS/FS/part_export/forward_shellcommands.pm +++ b/FS/FS/part_export/forward_shellcommands.pm @@ -97,7 +97,7 @@ sub shellcommands_queue { } sub ssh_cmd { #subroutine, not method - use Net::SSH '0.07'; + use Net::SSH '0.08'; &Net::SSH::ssh_cmd( { @_ } ); } diff --git a/FS/FS/part_export/router.pm b/FS/FS/part_export/router.pm index 1d1f907e2..07b5b9edb 100644 --- a/FS/FS/part_export/router.pm +++ b/FS/FS/part_export/router.pm @@ -138,7 +138,7 @@ sub router_queue { } sub ssh_cmd { #subroutine, not method - use Net::SSH '0.07'; + use Net::SSH '0.08'; &Net::SSH::ssh_cmd( { @_ } ); } diff --git a/FS/FS/part_export/shellcommands.pm b/FS/FS/part_export/shellcommands.pm index f65638984..db2e7aaf9 100644 --- a/FS/FS/part_export/shellcommands.pm +++ b/FS/FS/part_export/shellcommands.pm @@ -125,7 +125,7 @@ sub shellcommands_queue { } sub ssh_cmd { #subroutine, not method - use Net::SSH '0.07'; + use Net::SSH '0.08'; &Net::SSH::ssh_cmd( { @_ } ); } diff --git a/FS/FS/part_export/www_shellcommands.pm b/FS/FS/part_export/www_shellcommands.pm index 20658c7a2..3e0087446 100644 --- a/FS/FS/part_export/www_shellcommands.pm +++ b/FS/FS/part_export/www_shellcommands.pm @@ -96,7 +96,7 @@ sub shellcommands_queue { } sub ssh_cmd { #subroutine, not method - use Net::SSH '0.07'; + use Net::SSH '0.08'; &Net::SSH::ssh_cmd( { @_ } ); } |