Merge branch 'newtry'

# Conflicts:
#	jenkins/default_backup.yml
This commit is contained in:
matthias
2026-05-08 14:44:30 +02:00
3 changed files with 32 additions and 49 deletions
+13
View File
@@ -0,0 +1,13 @@
pipeline {
agent any
stages {
stage ('Run Backup to David') {
steps {
script {
sh "cp ${keyfile} ${WORKSPACE}/keyfile"
sh "rsync -v -a -e 'ssh -i /home/backupwinschoten/.ssh/id_rsa -p 9897' --delete --info=progress2 ${env.borglocation} backupwinschoten@localhost:/storage/"
}
}
}
}
}