fixed parameter

This commit is contained in:
matthias
2026-05-08 12:42:17 +02:00
parent 7a3fbd64b3
commit 62aae741ce
+1 -1
View File
@@ -7,7 +7,7 @@ pipeline {
string(name: 'agentname', defaultValue: params.directory ?: 'any', description: 'The agent to run this backup on') string(name: 'agentname', defaultValue: params.directory ?: 'any', 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')
} }
agent params.agentname agent { label "${params.agentname}" }
environment { environment {
BORG_RELOCATED_REPO_ACCESS_IS_OK = 'yes' BORG_RELOCATED_REPO_ACCESS_IS_OK = 'yes'
} }