diff options
-rw-r--r-- | docsite/rst/intro_configuration.rst | 7 | ||||
-rw-r--r-- | examples/ansible.cfg | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/docsite/rst/intro_configuration.rst b/docsite/rst/intro_configuration.rst index 450ca91aba..0c25297cf3 100644 --- a/docsite/rst/intro_configuration.rst +++ b/docsite/rst/intro_configuration.rst @@ -310,6 +310,13 @@ different locations:: Most users will not need to use this feature. See :doc:`developing_plugins` for more details +.. _module_lang: + +module_lang +=========== + +This is to set the default language to communicate between the module and the system. By default, the value is 'C'. + .. _module_name: module_name diff --git a/examples/ansible.cfg b/examples/ansible.cfg index 5b23e10126..f4f4385c4b 100644 --- a/examples/ansible.cfg +++ b/examples/ansible.cfg @@ -22,6 +22,7 @@ sudo_user = root #ask_pass = True transport = smart remote_port = 22 +module_lang = C # additional paths to search for roles in, colon separated #roles_path = /etc/ansible/roles |