Update jenkins/default_backup.yml
This commit is contained in:
@@ -2,7 +2,7 @@ pipeline {
|
||||
agent any
|
||||
parameters {
|
||||
booleanParam(name: 'backuplocally', defaultValue: params.backuplocally ?: false, description: 'If true local BORG backup will be created')
|
||||
booleanParam(name: 'backuptostackstorage', false, description: 'If true backup data to TransIP Stack')
|
||||
booleanParam(name: 'backuptostackstorage', defaultValue: false, description: 'If true backup data to TransIP Stack')
|
||||
booleanParam(name: 'backuptodavid', defaultValue: params.backuptodavid ?: false, description: 'If true rsync the BORG repository to David')
|
||||
booleanParam(name: 'backuptopi', defaultValue: params.backuptopi ?: false, description: 'If true rsync the BORG repository to our ExternalPI')
|
||||
booleanParam(name: 'backuptowinschoten', defaultValue: params.backuptowinschoten ?: false, description: 'If true rsync the BORG repository to our Winschoten backup system')
|
||||
@@ -15,6 +15,7 @@ pipeline {
|
||||
stages {
|
||||
stage('Run Information') {
|
||||
steps {
|
||||
backuptostackstorage = false
|
||||
echo "Backing up directory ${env.storagelocation}/${directory}"
|
||||
echo "Local BORG backup creation is ${params.backuplocally}"
|
||||
echo "Backup to TransIP Stack is ${params.backuptostackstorage}"
|
||||
|
||||
Reference in New Issue
Block a user