SSH / SCP -o options should be quoted
-------------------------------------

                 Key: WAGON-258
                 URL: http://jira.codehaus.org/browse/WAGON-258
             Project: Maven Wagon
          Issue Type: Bug
          Components: wagon-ssh-external
    Affects Versions: 1.0-beta-5
         Environment: Maven 2.1.0 and Java 1.5.0_15
            Reporter: Timothy Riley


I'm currently using Reflection Secure IT, which requires all SSH / SCP -o 
options
be placed in quotations unfortunately I cannot deviate from this technology.
The problem is that ScpExternalWagon.java places the BatchMode option as an
argument without quotes resulting in a failing SSH command.

Line 251 of ScpExternalWagon.java
   cl.createArgument().setValue( "BatchMode yes" );

Results in...
ssh -o BatchMode yes [REST OF COMMAND]

What I need is...
ssh -o "BatchMode yes" [REST OF COMMAND]


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to