-
New Feature
-
Resolution: Not A Defect
-
Minor
-
None
def remote = [:] remote.name = 'test' remote.host = 'test.domain.com' remote.user = 'root' remote.password = 'password' remote.allowAnyHosts = true stage('Remote SSH') { writeFile file: 'abc.sh', text: 'ls -lrt' sshScript remote: remote, script: "abc.sh" }
Is there any way to use the parameters for the remote host, name, user, and password?