1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Remove limitation on number of files for encrypt subcommand in ansible-vault

This commit is contained in:
James Tanner 2014-04-02 13:33:11 -04:00
parent f50a943064
commit 5795796546

View file

@ -160,9 +160,6 @@ def execute_edit(args, options, parser):
def execute_encrypt(args, options, parser):
if len(args) > 1:
raise errors.AnsibleError("'create' does not accept more than one filename")
if not options.password_file:
password, new_password = utils.ask_vault_passwords(ask_vault_pass=True, confirm_vault=True)
else: