- 27 Aug, 2015 1 commit
-
-
Brian Coca committed
-
- 26 Aug, 2015 22 commits
-
-
Chrrrles Paul committed
-
fixes #12062
Brian Coca committed -
James Cammarata committed
-
Toshio Kuratomi committed
-
Fixes #11997
James Cammarata committed -
Also sets the max_fail_percentage value to the percent type.
James Cammarata committed -
ansible-lockdown added, minor editing
Brian Coca committed -
added info/link for ansible-lockdown to mailing list section, minor editing (can't help myself it seems) to the paragraph about subscribing from a non-google account
Sandra Wills committed -
fixes #12104
Brian Coca committed -
Vault cleanups, pass #1
Toshio Kuratomi committed -
Abhijit Menon-Sen committed
-
Abhijit Menon-Sen committed
-
Synchronize fix error
Toshio Kuratomi committed -
Now we don't have to recreate VaultEditor objects for each file, and so on. It also paves the way towards specifying separate input and output files later.
Abhijit Menon-Sen committed -
Brian Coca committed
-
Abhijit Menon-Sen committed
-
It's unused and unnecessary; VaultLib can decide for itself what cipher to use when encrypting. There's no need (and no provision) for the user to override the cipher via options, so there's no need for code to see if that has been done either.
Abhijit Menon-Sen committed -
Abhijit Menon-Sen committed
-
Abhijit Menon-Sen committed
-
Brian Coca committed
-
Fix the error: "RuntimeError: dictionary changed size during iteration"
Thomas Quenolle committed -
Fixes #11981 Fixes #11995 Fixes #12039 Fixes #12077
James Cammarata committed
-
- 25 Aug, 2015 17 commits
-
-
Toshio Kuratomi committed
-
Toshio Kuratomi committed
-
also normalized -M option across all cli fixes #12016
Brian Coca committed -
This bug was introduced in commit f8bf2ba1 on July 27. Hasn't gone out in a release yet.
Toshio Kuratomi committed -
Unicode and other fixes for vault
Toshio Kuratomi committed -
Toshio Kuratomi committed
-
add option to ansible-vault to read new password from file for rekey
Toshio Kuratomi committed -
allow ansible to connect to docker containers (without using ssh)
Toshio Kuratomi committed -
The --new-vault-password-file option works the same as --vault-password-file but applies only to rekeying (when --vault-password-file sets the old password). Also update the manpage to document these options more fully.
Richard Poole committed -
Brian Coca committed
-
Brian Coca committed
-
remove defaults from inhertiable fieldattributes to allow for proper detection and override
Brian Coca committed -
added block environment test
Brian Coca committed -
Speed up execution
Brian Coca committed -
`if method in dir(self):` is very inefficient: - it must construct a list object listing all the object attributes & methods - it must then perform a O(N) linear scan of that list Replace it with the idiomatic `if hasattr(self, method):`, which is a O(1) expected time hash lookup. Should fix #11981.
Marius Gedminas committed -
objectified committed
-
objectified committed
-