summaryrefslogtreecommitdiff
path: root/lib/ansible/utils/helpers.py
Commit message (Collapse)AuthorAgeFilesLines
* Update module_utils.six to latest (#22855)Toshio Kuratomi2017-03-231-1/+2
| | | | | | | | * Update module_utils.six to latest We've been held back on the version of six we could use on the module side to 1.4.x because of python-2.4 compatibility. Now that our minimum is Python-2.6, we can update to the latest version of six in module_utils and get rid of the second copy in lib/ansible/compat.
* PEP 8 W291 whitespace cleanup.Matt Clay2017-01-271-1/+1
|
* Change <support@ansible.com> - it's being retired.Bill Nottingham2016-10-151-1/+1
|
* FEATURE: adding variable serial batchesJames Cammarata2016-08-041-0/+34
This feature changes the scalar value of `serial:` to a list, which allows users to specify a list of values, so batches can be ramped up (commonly called "canary" setups): - hosts: all serial: [1, 5, 10, "100%"] tasks: ...