mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add FILES to manpage
This commit is contained in:
parent
6886683e16
commit
70ed560fb3
3 changed files with 15 additions and 0 deletions
|
@ -43,6 +43,7 @@ Highlighted playbook changes:
|
|||
* 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
|
||||
* 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:
|
||||
|
||||
|
@ -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)
|
||||
* 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
|
||||
* virt_boot -- creates new virtual machines with libvirt
|
||||
|
||||
Other module Changes, Upgrades, and Fixes:
|
||||
|
||||
|
|
|
@ -107,6 +107,16 @@ ANSIBLE_HOSTS -- Override the default ansible hosts file
|
|||
|
||||
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
|
||||
------
|
||||
|
|
|
@ -135,6 +135,9 @@ FILES
|
|||
|
||||
/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
|
||||
-----------
|
||||
|
|
Loading…
Reference in a new issue