This commit is contained in:
matthias
2026-05-04 15:08:31 +02:00
parent 5163fdbb55
commit db43d95d87
+6
View File
@@ -69,6 +69,7 @@ pipeline {
stage('Rsync TEST') {
failFast false
parallel {
stage ('Run Backup to David') {
steps {
script {
if (params.backuptodavid) {
@@ -77,6 +78,10 @@ pipeline {
echo "Backup to David is skipped"
}
}
}
}
stage ('Run Backup to Winschoten') {
steps {
script {
if (params.backuptowinschoten) {
withCredentials([sshUserPrivateKey(credentialsId: 'backupwinschoten', keyFileVariable: 'keyfile', passphraseVariable: 'passphrase', usernameVariable: 'user')]) {
@@ -90,6 +95,7 @@ pipeline {
}
}
}
}
// stage('Run Rsync to David') {