diff options
author | Pilou <pierre-louis@libregerbil.fr> | 2018-03-23 13:02:19 +0100 |
---|---|---|
committer | James Cammarata <jimi@sngx.net> | 2018-03-23 13:02:19 +0100 |
commit | 56d0721bd91923ad84ef2ed04f4a166abbbd80d4 (patch) | |
tree | 67060a617f706b03a7d1f0fcf092d1fdcc430bbb /docs | |
parent | apt: mark installed packages manual (#37751) (diff) | |
download | ansible-56d0721bd91923ad84ef2ed04f4a166abbbd80d4.tar.xz ansible-56d0721bd91923ad84ef2ed04f4a166abbbd80d4.zip |
doc: modules involving file transfert bypass pipelining (#37250)
* doc: modules involving file transfert bypass pipelining
* Fixed typo
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docsite/rst/user_guide/become.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/docsite/rst/user_guide/become.rst b/docs/docsite/rst/user_guide/become.rst index 2ebdae92c5..0df227b68c 100644 --- a/docs/docsite/rst/user_guide/become.rst +++ b/docs/docsite/rst/user_guide/become.rst @@ -149,8 +149,9 @@ Ways to resolve this include: * Use `pipelining`. When pipelining is enabled, Ansible doesn't save the module to a temporary file on the client. Instead it pipes the module to - the remote python interpreter's stdin. Pipelining does not work for - non-python modules. + the remote python interpreter's stdin. Pipelining does not work for + python modules involving file transfer (for example: :ref:`copy <copy>`, + :ref:`fetch <fetch>`, :ref:`template <template>`), or for non-python modules. * (Available in Ansible 2.1) Install POSIX.1e filesystem acl support on the managed host. If the temporary directory on the remote host is mounted with |