Files
backup/jenkins/backupDavid.yml
T
matthias 2525f60fa1 syntax
2026-05-08 13:36:54 +02:00

13 lines
325 B
YAML

pipeline {
agent any
stages {
stage ('Run Backup to David') {
steps {
script {
sh "rsync -v -a -e 'ssh -p 664' --delete --bwlimit=3000 --info=progress2 ${env.borglocation} matthias@home.daf2000.nl:/media/disk/"
}
}
}
}
}