Removed an unnecessary check in dup handler.
authorintrigeri <intrigeri@boum.org>
Fri, 19 Aug 2005 23:02:07 +0000 (23:02 +0000)
committerintrigeri <intrigeri@boum.org>
Fri, 19 Aug 2005 23:02:07 +0000 (23:02 +0000)
handlers/dup

index 7dfb76698f159a4a6a1161984ec33a154186a63c..22f915f53306f45a78765b447ad77f4faa893005 100644 (file)
@@ -62,7 +62,7 @@ fi
 if [ "$testconnect" == "yes" ]; then
     debug "ssh $sshoptions -o PasswordAuthentication=no $desthost -l $destuser 'echo -n 1'"
     if [ ! $test ]; then
-       result=`ssh $sshoptions -o PasswordAuthentication=no $desthost -l $destuser 'echo -n 1' 2>&1`
+       result=`ssh $sshoptions -o PasswordAuthentication=no $desthost -l $destuser 'echo -n 1'`
        if [ "$result" != "1" ]; then
            fatal "Can't connect to $desthost as $destuser."
        else