Commit 70ed560f by Michael DeHaan

Add FILES to manpage

parent 6886683e
...@@ -43,6 +43,7 @@ Highlighted playbook changes: ...@@ -43,6 +43,7 @@ Highlighted playbook changes:
* task includes now work with with_items (such as: include: path/to/wordpress.yml user=$item) * task includes now work with with_items (such as: include: path/to/wordpress.yml user=$item)
* when using a $list variable with $var or ${var} syntax it will automatically join with commas * when using a $list variable with $var or ${var} syntax it will automatically join with commas
* setup is not run more than once when we know it is has already been run in a play that included another play, etc * setup is not run more than once when we know it is has already been run in a play that included another play, etc
* can set/override sudo and sudo_user on individual tasks in a play, defaults to what is set in the play if not present
Other playbook changes: Other playbook changes:
...@@ -68,6 +69,7 @@ New Modules: ...@@ -68,6 +69,7 @@ New Modules:
* a module for adding entries to the main crontab (though you may still wish to just drop template files into cron.d) * a module for adding entries to the main crontab (though you may still wish to just drop template files into cron.d)
* debug module can be used for outputing messages without using 'shell echo' * debug module can be used for outputing messages without using 'shell echo'
* a fail module is now available for causing errors, you might want to use it with only_if to fail in certain conditions * a fail module is now available for causing errors, you might want to use it with only_if to fail in certain conditions
* virt_boot -- creates new virtual machines with libvirt
Other module Changes, Upgrades, and Fixes: Other module Changes, Upgrades, and Fixes:
......
...@@ -107,6 +107,16 @@ ANSIBLE_HOSTS -- Override the default ansible hosts file ...@@ -107,6 +107,16 @@ ANSIBLE_HOSTS -- Override the default ansible hosts file
ANSIBLE_LIBRARY -- Override the default ansible module library path ANSIBLE_LIBRARY -- Override the default ansible module library path
FILES
-----
/etc/ansible/hosts -- Default inventory file
/usr/share/ansible/ -- Default module library
/etc/ansible/ansible.conf -- Config file, used if present
~/.ansible.config -- User config file, overrides the default config if present
AUTHOR AUTHOR
------ ------
......
...@@ -135,6 +135,9 @@ FILES ...@@ -135,6 +135,9 @@ FILES
/usr/share/ansible/ -- Default module library /usr/share/ansible/ -- Default module library
/etc/ansible/ansible.conf -- Config file, used if present
~/.ansible.config -- User config file, overrides the default config if present
ENVIRONMENT ENVIRONMENT
----------- -----------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment