Merge pull request #8757 from sivel/issue/8752
ansible-vault: The correct option is password_file. Fixes #8752
This commit is contained in:
commit
75bd1fa97b
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ def execute_decrypt(args, options, parser):
|
|||
if not options.password_file:
|
||||
password, new_password = utils.ask_vault_passwords(ask_vault_pass=True)
|
||||
else:
|
||||
password = utils.read_vault_file(options.vault_password_file)
|
||||
password = utils.read_vault_file(options.password_file)
|
||||
|
||||
cipher = 'AES256'
|
||||
if hasattr(options, 'cipher'):
|
||||
|
|
Loading…
Reference in a new issue