community.general/lib/ansible/plugins
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
..
action Make ansible_pipelining a connection variable 2015-09-28 20:55:14 +05:30
cache Simplify FactCache.copy() 2015-09-03 09:44:44 +03:00
callback Make sure formatted strings don't bomb on tuples 2015-09-25 03:01:42 -04:00
connection Clarify why we add -q only for ssh 2015-09-28 16:00:23 +05:30
filter Resurrection of the comment filter 2015-09-10 14:37:42 +02:00
inventory Remove unused (copied) _before_comment method 2015-08-21 06:58:23 +05:30
lookup Fix bug in nested lookup where pop is called indiscriminately 2015-09-25 17:16:56 -04:00
shell Add PowerShell exception handling and turn on strict mode. 2015-09-15 16:32:35 -04:00
strategy Don't wrap vars from include_vars with UnsafeProxy 2015-09-26 15:16:46 -04:00
test moved mandatory back to filters as it does not always return a boolean, it does an exception on failure 2015-08-21 09:54:56 -04:00
vars Making the switch to v2 2015-05-03 21:47:26 -05:00
__init__.py Fix for user defined modules not overriding modules from core. 2015-09-22 09:07:37 -07:00