mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Update rekey() in vault.py to validate files passed exist before prompting for password
This commit is contained in:
parent
b34b606fcf
commit
ddd46f6599
1 changed files with 3 additions and 0 deletions
|
@ -115,6 +115,9 @@ class VaultCLI(CLI):
|
|||
self.display.display("Encryption successful")
|
||||
|
||||
def execute_rekey(self):
|
||||
for f in self.args:
|
||||
if not (os.path.isfile(f)):
|
||||
raise AnsibleError(f + " does not exist")
|
||||
__, new_password = self.ask_vault_passwords(ask_vault_pass=False, ask_new_vault_pass=True, confirm_new=True)
|
||||
|
||||
for f in self.args:
|
||||
|
|
Loading…
Reference in a new issue