community.general/lib/ansible/plugins/action
Abhijit Menon-Sen 565c6f1ae7 Make ansible_pipelining a connection variable
SSH pipelining can be a significant performance improvement, but it will
not work if sudoers is configured to requiretty. With this change, one
could have pipelining enabled in ansible.cfg, but use sudo to turn off
requiretty in a separate play (or task) where pipelining is disabled:

    - hosts: foo
      vars:
          ansible_pipelining: no
      tasks:
        - lineinfile: dest=/etc/sudoers line='Defaults requiretty' state=absent
          sudo_user: root

(Note that sudoers has a complicated syntax, so the above lineinfile
invocation may be too simplistic for production use; but the point is
that a separate play can do something to disable requiretty.)
2015-09-28 20:55:14 +05:30
..
__init__.py Make ansible_pipelining a connection variable 2015-09-28 20:55:14 +05:30
add_host.py Be systematic about parsing and validating hostnames and addresses 2015-09-11 21:47:18 +05:30
assemble.py Remove tmp as a parameter to the connection plugins 2015-09-24 13:33:57 -07:00
assert.py Fixing filter plugins directory from switch 2015-05-04 01:33:10 -05:00
async.py Remove tmp as a parameter to the connection plugins 2015-09-24 13:33:57 -07:00
copy.py Remove tmp as a parameter to the connection plugins 2015-09-24 13:33:57 -07:00
debug.py Reworking internal result flags and making sure include_vars hides vault data 2015-07-27 14:04:31 -04:00
fail.py Making the switch to v2 2015-05-03 21:47:26 -05:00
fetch.py Remove tmp as a parameter to the connection plugins 2015-09-24 13:33:57 -07:00
group_by.py Making the switch to v2 2015-05-03 21:47:26 -05:00
include_vars.py Avoid types.NoneType 2015-08-27 22:15:56 +03:00
normal.py Fix potential bug in parameter passing 2015-07-31 20:35:01 -07:00
package.py Replace 'degug' with 'debug' 2015-09-14 23:21:03 -04:00
patch.py Remove tmp as a parameter to the connection plugins 2015-09-24 13:33:57 -07:00
pause.py now continue/abort mode allows ignoring other input 2015-08-06 22:16:30 -04:00
raw.py Remove tmp as a parameter to the connection plugins 2015-09-24 13:33:57 -07:00
script.py Remove tmp as a parameter to the connection plugins 2015-09-24 13:33:57 -07:00
service.py package and service now check that module exists before trying to execute it 2015-08-31 20:34:20 -04:00
set_fact.py Replace .iteritems() with six.iteritems() 2015-09-03 09:23:27 +03:00
synchronize.py Fixing synchronize + delegate_to user bug 2015-09-22 16:06:52 -04:00
template.py Remove tmp as a parameter to the connection plugins 2015-09-24 13:33:57 -07:00
unarchive.py Remove tmp as a parameter to the connection plugins 2015-09-24 13:33:57 -07:00
win_copy.py Fixes for WinRM/PowerShell support in v2. 2015-07-31 14:38:31 -04:00
win_template.py Fixes for WinRM/PowerShell support in v2. 2015-07-31 14:38:31 -04:00