diff options
author | Alicia Cozine <cozi@visi.com> | 2018-04-25 13:18:52 -0500 |
---|---|---|
committer | Toshio Kuratomi <a.badger@gmail.com> | 2018-04-25 11:18:52 -0700 |
commit | 4b52a54e18480797c41e4111643215690ee94dca (patch) | |
tree | ca12a5817386c1e84c719fedac72613bf4c24dc7 /docs/docsite/rst/reference_appendices/faq.rst | |
parent | 476d1f818e4ec0402568946b3c7514179a29b7d7 (diff) | |
download | ansible-4b52a54e18480797c41e4111643215690ee94dca.tar.gz |
Reduce warnings (#39254)
* removes FAQ links; no entries exist for linked config settings
* fixes various anchors and links
* addresses abadger comments, thanks
* marks orphan pages, avoids TOC errors
* adds links for remote_tmp setting to FAQ
Diffstat (limited to 'docs/docsite/rst/reference_appendices/faq.rst')
-rw-r--r-- | docs/docsite/rst/reference_appendices/faq.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/docsite/rst/reference_appendices/faq.rst b/docs/docsite/rst/reference_appendices/faq.rst index 25901935b9..7f74aa9964 100644 --- a/docs/docsite/rst/reference_appendices/faq.rst +++ b/docs/docsite/rst/reference_appendices/faq.rst @@ -19,6 +19,7 @@ Setting environment variables can be done with the `environment` keyword. It can .. note:: starting in 2.0.1 the setup task from gather_facts also inherits the environment directive from the play, you might need to use the `|default` filter to avoid errors if setting this at play level. +.. _faq_setting_users_and_ports: How do I handle different machines needing different user accounts or ports to log in with? +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ @@ -185,12 +186,12 @@ By default, Solaris 10 and earlier run a non-POSIX shell which does not correctl tmp directory Ansible uses ( :file:`~/.ansible/tmp`). If you see module failures on Solaris machines, this is likely the problem. There are several workarounds: -* You can set :ref:`remote_tmp` to a path that will expand correctly with the Solaris shell. For +* You can set ``remote_tmp`` to a path that will expand correctly with the shell you are using (see the plugin documentation for :ref:`C shell<csh_shell>`, :ref:`fish shell<fish_shell>`, and :ref:`Powershell<powershell_shell>`). For example, in the ansible config file you can set:: remote_tmp=$HOME/.ansible/tmp - In Ansible 2.5 and later, you can also set it per-host like this:: + In Ansible 2.5 and later, you can also set it per-host in inventory like this:: solaris1 ansible_remote_tmp=$HOME/.ansible/tmp |