removed the forced NAME fill-in

This commit is contained in:
matthias
2026-05-31 21:34:57 +02:00
parent b7367ae30c
commit 3c823a0135
+3 -3
View File
@@ -1,8 +1,8 @@
pipeline { pipeline {
parameters { parameters {
booleanParam(name: 'UseLocationPrefix', defaultValue: params.backuplocally ?: true, description: 'Use the environmental backup location') 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') 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: env.JOB_NAME ?: ' ', description: 'The name of the job/repository that should be handled') 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') 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') text(name: 'excludelist', defaultValue: params.excludelist ?: '**/cache/** ', description: 'Multiline string to exclude patterns from backup')
} }