another inventory fix

This commit is contained in:
2026-01-30 15:07:34 -05:00
parent 520d5e3535
commit 6bf17ea35f

2
Jenkinsfile vendored
View File

@@ -59,7 +59,7 @@ pipeline {
limitValue = params.LIMIT ?: '' limitValue = params.LIMIT ?: ''
} }
def limitFlag = limitValue ? "--limit '${limitValue}'" : '' def limitFlag = limitValue ? "--limit \"${limitValue}\"" : ''
def checkFlag = (params.DRY_RUN == true) ? '--check --diff' : '' def checkFlag = (params.DRY_RUN == true) ? '--check --diff' : ''
def extraVars = (params.CLEANUP_SNAPSHOTS == true) ? "-e cleanup_old_snapshots=true" : '' def extraVars = (params.CLEANUP_SNAPSHOTS == true) ? "-e cleanup_old_snapshots=true" : ''