- 25 Aug, 2015 15 commits
-
-
Now everything under _match_one_pattern can ignore them. This also means that we can use the cache to return the same results for 'foo' and '!foo'.
Abhijit Menon-Sen committed -
There are no code changes; this is committed separately so as to make the subsequent "real" diffs easier to read.
Abhijit Menon-Sen committed -
Abhijit Menon-Sen 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 -
Brian Coca committed
-
Brian Coca committed
-
Brian Coca committed
-
Brian Coca committed
-
Toshio Kuratomi committed
-
fixes #12055
Brian Coca committed
-
- 24 Aug, 2015 12 commits
-
-
Toshio Kuratomi committed
-
Brian Coca committed
-
Brian Coca committed
-
Brian Coca committed
-
Brian Coca committed
-
Brian Coca committed
-
Fixes #12011
James Cammarata committed -
cloudstack: more integration tests and updates
Brian Coca committed -
Brian Coca committed
-
Brian Coca committed
-
Revert "Add PowerShell exception handling and turn on strict mode."
James Cammarata committed -
James Cammarata committed
-
- 23 Aug, 2015 12 commits
-
-
Apart from ansible-vault create, every vault subcommand is happy to deal with multiple filenames, so we can check that there's at least one, and make create check separately that there aren't any extra.
Abhijit Menon-Sen committed -
Brian Coca committed
-
Brian Coca committed
-
Rene Moser committed
-
Rene Moser committed
-
Rene Moser committed
-
Add PowerShell exception handling and turn on strict mode.
Brian Coca committed -
draft bsd intro and bootstrapping
Brian Coca committed -
made squashable with_ plugin list configurable
Brian Coca committed -
Fix a parsing bug that prevents IPv6 addresses from being used with add_host
Toshio Kuratomi committed -
Abhijit Menon-Sen committed
-
Closes #8682
Ryan Petrello committed
-
- 22 Aug, 2015 1 commit
-
-
* Add exception handling when running PowerShell modules to provide exception message and stack trace. * Enable strict mode for all PowerShell modules and internal commands. * Update common PowerShell code to fix strict mode errors. * Fix an issue with Set-Attr where it would not replace an existing property if already set. * Add tests for exception handling using modified win_ping modules.
Chris Church committed
-