Commit ddd46f65 by Mahmoud Saada Committed by Mahmoud Saada

Update rekey() in vault.py to validate files passed exist before prompting for password

parent b34b606f
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment