From 6714748eeb87000e6fe66a3e978c4abc2f452db1 Mon Sep 17 00:00:00 2001 From: Sam Dolan Date: Sat, 14 Jun 2014 04:42:47 -0700 Subject: [PATCH] Throw an exception for a missing param in ansible-vault Without this fix you have to enter your vault password before you realize that you forgot to pass in the filename. This commit checks that an filename argument was at least passed on the command line. --- bin/ansible-vault | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/ansible-vault b/bin/ansible-vault index 4929e1c2a19..68cc064168e 100755 --- a/bin/ansible-vault +++ b/bin/ansible-vault @@ -112,7 +112,6 @@ def _read_password(filename): return data def execute_create(args, options, parser): - if len(args) > 1: raise errors.AnsibleError("'create' does not accept more than one filename") @@ -204,6 +203,11 @@ def main(): parser = build_option_parser(action) (options, args) = parser.parse_args() + if not len(args): + raise errors.AnsibleError( + "The '%s' command requires a filename as the first argument" % action + ) + # execute the desired action try: fn = globals()["execute_%s" % action]