now validate that we do get a vault password

This commit is contained in:
Brian Coca 2015-06-27 00:02:08 -04:00
parent bdceb154e5
commit e153f76c95

View file

@ -76,6 +76,9 @@ class VaultCLI(CLI):
elif self.options.ask_vault_pass:
self.vault_pass, _= self.ask_vault_passwords(ask_vault_pass=True, ask_new_vault_pass=False, confirm_new=False)
if not self.vault_pass:
raise AnsibleOptionsError("A password is required to use Ansible's Vault")
self.execute()
def execute_create(self):