- 04 Jan, 2014 4 commits
-
-
Fixed typo in example documentation
Michael DeHaan committed -
Michael DeHaan committed
-
Paul Beattie committed
-
Remove code underlying when_* and only_if, which are deprecated features slated for removal in the 1.5 release.
Michael DeHaan committed
-
- 03 Jan, 2014 10 commits
-
-
Resolves issues with newer versions of pip not having a --use-mirrors paramater for the install command
James Tanner committed -
We have had only_if, when_foo, etc, deprecated for a while and said they would be removed in 1.5. Now they are, with friendly error messages still. Users of these features should use "when:" as documented at docs.ansible.com. Similarly, include + with_items has been removed. The solution is to loop inside the task files, see with_nested / with_together, etc.
Michael DeHaan committed -
Michael DeHaan committed
-
James Tanner committed
-
build manpages.
Michael DeHaan committed -
Michael DeHaan committed
-
James Tanner committed
-
service_module: Fixed false positive on initctl as enable_cmd
jctanner committed -
bad closing quote in footer
Michael DeHaan committed -
John Jarvis committed
-
- 02 Jan, 2014 7 commits
-
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
James Tanner committed
-
Fixes #4935 Synchronize module: set destination to an fqdn if connection is not local, and abide by ansible_remote_user
James Tanner committed -
synchronize: allow ansible_ssh_host to be templated
jctanner committed
-
- 31 Dec, 2013 1 commit
-
- 30 Dec, 2013 1 commit
-
-
Fix a small typo
Michael DeHaan committed
-
- 29 Dec, 2013 1 commit
-
-
Christian Jensen committed
-
- 27 Dec, 2013 10 commits
-
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
fix various documentation xrefs
Michael DeHaan committed -
Fix documentation example for the fail module
Michael DeHaan committed -
Mikhail Sobolev committed
-
The example for the fail module doesn't work: http://www.ansibleworks.com/docs/modules.html#fail The current text shows: - fail: msg="The system may not be provisioned according to the CMDB status." when: "{{ cmdb_status }} != 'to-be-staged'" The "when" documentation indicates that the argument is already a Jinja2 expression: http://www.ansibleworks.com/docs/playbooks_conditionals.html#the-when-statement Thus, the following is when: cmdb_status != "to-be-staged" is preferred even though the following could work but generates a deprecation warning: when: {{cmdb_status != "to-be-staged"}}
Jim Kleckner committed
-
- 26 Dec, 2013 6 commits
-
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Mikhail Sobolev committed
-
Mikhail Sobolev committed
-