From 3c823a01350cf34dd4b2d07a2c33eee1ce22833e Mon Sep 17 00:00:00 2001 From: matthias Date: Sun, 31 May 2026 21:34:57 +0200 Subject: [PATCH] removed the forced NAME fill-in --- jenkins/default_backup.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jenkins/default_backup.yml b/jenkins/default_backup.yml index 077222a..7382394 100644 --- a/jenkins/default_backup.yml +++ b/jenkins/default_backup.yml @@ -1,8 +1,8 @@ pipeline { parameters { - booleanParam(name: 'UseLocationPrefix', defaultValue: params.backuplocally ?: true, description: 'Use the environmental backup location') - string(name: 'directory', defaultValue: params.directory ?: ' ', description: 'The directory that should be handled') - string(name: 'name', defaultValue: env.JOB_NAME ?: ' ', description: 'The name of the job/repository that should be handled') + booleanParam(name: 'UseLocationPrefix', defaultValue: params.backuplocally ?: true, description: 'Use the environmental storage (FROM directory) location') + string(name: 'directory', defaultValue: params.directory ?: ' ', description: 'The directory that should be handled - either at the environmental location or fill in a custom absolute path') + string(name: 'name', defaultValue: params.name ?: ' ', description: 'The name of the job/repository that should be handled') string(name: 'agentname', defaultValue: params.agentname ?: 'julien', description: 'The agent to run this backup on') text(name: 'excludelist', defaultValue: params.excludelist ?: '**/cache/** ', description: 'Multiline string to exclude patterns from backup') }