Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update module_utils.six to latest (#22855) | Toshio Kuratomi | 2017-03-23 | 1 | -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 Clay | 2017-01-27 | 1 | -1/+1 |
| | |||||
* | Change <support@ansible.com> - it's being retired. | Bill Nottingham | 2016-10-15 | 1 | -1/+1 |
| | |||||
* | FEATURE: adding variable serial batches | James Cammarata | 2016-08-04 | 1 | -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: ... |