mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Fix flag in debug message (#40753)
The debug message stated that the vault password client script was invoked as `example.py --vault-id=example`, while it's actually `example.py --vault-id example`.
This commit is contained in:
committed by
Sloane Hertel
parent
d4930e6692
commit
6097776dc0
@@ -496,7 +496,7 @@ class ClientScriptVaultSecret(ScriptVaultSecret):
|
|||||||
encoding=encoding,
|
encoding=encoding,
|
||||||
loader=loader)
|
loader=loader)
|
||||||
self._vault_id = vault_id
|
self._vault_id = vault_id
|
||||||
display.vvvv('Executing vault password client script: %s --vault-id=%s' % (filename, vault_id))
|
display.vvvv('Executing vault password client script: %s --vault-id %s' % (filename, vault_id))
|
||||||
|
|
||||||
def _run(self, command):
|
def _run(self, command):
|
||||||
try:
|
try:
|
||||||
|
|||||||
Reference in New Issue
Block a user