mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Make the filename the first argument to rekey_file
This commit is contained in:
parent
c4b2540ecc
commit
b84053019a
3 changed files with 3 additions and 3 deletions
|
@ -128,6 +128,6 @@ class VaultCLI(CLI):
|
|||
__, new_password = self.ask_vault_passwords(ask_vault_pass=False, ask_new_vault_pass=True, confirm_new=True)
|
||||
|
||||
for f in self.args:
|
||||
self.editor.rekey_file(new_password, f)
|
||||
self.editor.rekey_file(f, new_password)
|
||||
|
||||
self.display.display("Rekey successful", stderr=True)
|
||||
|
|
|
@ -336,7 +336,7 @@ class VaultEditor:
|
|||
else:
|
||||
raise AnsibleError("%s is already encrypted" % filename)
|
||||
|
||||
def rekey_file(self, new_password, filename):
|
||||
def rekey_file(self, filename, new_password):
|
||||
|
||||
check_prereqs()
|
||||
|
||||
|
|
|
@ -185,7 +185,7 @@ class TestVaultEditor(unittest.TestCase):
|
|||
# make sure the password functions for the cipher
|
||||
error_hit = False
|
||||
try:
|
||||
ve.rekey_file('ansible2', v10_file.name)
|
||||
ve.rekey_file(v10_file.name, 'ansible2')
|
||||
except errors.AnsibleError as e:
|
||||
error_hit = True
|
||||
|
||||
|
|
Loading…
Reference in a new issue