From e027c741d7bedc24d8627d7187c3e64626315df9 Mon Sep 17 00:00:00 2001 From: jerick Date: Sun, 1 Feb 2026 20:50:04 -0500 Subject: [PATCH] removed verbosity and old snapshot cleanup variable --- Jenkinsfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b06e1c2..aa6c4c7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -61,7 +61,6 @@ pipeline { def limitFlag = limitValue ? "--limit \"${limitValue}\"" : '' def checkFlag = (params.DRY_RUN == true) ? '--check --diff' : '' - def extraVars = (params.CLEANUP_SNAPSHOTS == true) ? "-e cleanup_old_snapshots=true" : '' echo "DRY_RUN parameter: ${params.DRY_RUN}" echo "Check flag: '${checkFlag}'" @@ -76,8 +75,7 @@ pipeline { playbooks/${params.PLAYBOOK} \ ${limitFlag} \ ${checkFlag} \ - ${extraVars} \ - -v + ${extraVars} """ } }