|
|
@ -133,6 +133,19 @@ different locations::
|
|
|
|
|
|
|
|
|
|
|
|
Most users will not need to use this feature. See :doc:`developing_plugins` for more details
|
|
|
|
Most users will not need to use this feature. See :doc:`developing_plugins` for more details
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.. _deprecation_warnings:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
deprecation_warnings
|
|
|
|
|
|
|
|
====================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.. versionadded:: 1.3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Allows disabling of deprecating warnings in ansible-playbook output::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
deprecation_warnings = True
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Deprecation warnings indicate usage of legacy features that are slated for removal in a future release of Ansible.
|
|
|
|
|
|
|
|
|
|
|
|
.. _display_skipped_hosts:
|
|
|
|
.. _display_skipped_hosts:
|
|
|
|
|
|
|
|
|
|
|
|
display_skipped_hosts
|
|
|
|
display_skipped_hosts
|
|
|
@ -390,6 +403,22 @@ always default to the current user::
|
|
|
|
|
|
|
|
|
|
|
|
remote_user = root
|
|
|
|
remote_user = root
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.. _roles_path
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
roles_path
|
|
|
|
|
|
|
|
==========
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.. version_added: '1.4'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The roles path indicate additional directories beyond the 'roles/' subdirectory of a playbook project to search to find Ansible
|
|
|
|
|
|
|
|
roles. For instance, if there was a source control repository of common roles and a different repository of playbooks, you might
|
|
|
|
|
|
|
|
choose to establish a convention to checkout roles in /opt/mysite/roles like so::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
roles_path = /opt/mysite/roles
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Roles will be first searched for in the playbook directory. Should a role not be found, it will indicate all the possible paths
|
|
|
|
|
|
|
|
that were searched.
|
|
|
|
|
|
|
|
|
|
|
|
.. _sudo_exe:
|
|
|
|
.. _sudo_exe:
|
|
|
|
|
|
|
|
|
|
|
|
sudo_exe
|
|
|
|
sudo_exe
|
|
|
|