2022-07-29 13:28:34 +02:00
|
|
|
node {
|
2022-07-29 13:58:41 +02:00
|
|
|
def remote = [:]
|
|
|
|
remote.name = 'workstation'
|
2022-07-29 14:21:45 +02:00
|
|
|
remote.host = 'workstation'
|
2022-07-29 13:58:41 +02:00
|
|
|
remote.user = 'dany'
|
|
|
|
remote.allowAnyHosts = true
|
2022-07-29 14:28:50 +02:00
|
|
|
remote.agent = true
|
2022-07-29 14:19:23 +02:00
|
|
|
remote.identifyFile = '/var/jenkins_home/.ssh/id_rsa'
|
2022-07-29 13:58:41 +02:00
|
|
|
stage('Remote SSH') {
|
2022-07-29 14:00:06 +02:00
|
|
|
sshCommand remote: remote, command: "ls -al"
|
2022-07-29 13:58:41 +02:00
|
|
|
sshCommand remote: remote, command: "for i in {1..5}; do echo -n \"Loop \$i \"; date ; sleep 1; done"
|
|
|
|
}
|
2022-07-29 13:28:34 +02:00
|
|
|
}
|