community.general/lib/ansible/playbook
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
..
role Improve error catching from malformed playbook data 2015-09-23 08:56:36 -04:00
__init__.py Minor comment fix 2015-08-05 11:30:26 +02:00
attribute.py Use rich comparisons for Attribute and FieldAttribute 2015-09-02 12:33:42 +03:00
base.py Fix parent attribute lookup to be default 2015-09-26 11:28:29 -04:00
become.py removed incorrect assumption on become user being set 2015-06-14 21:05:23 -04:00
block.py Fix parent attribute lookup to be default 2015-09-26 11:28:29 -04:00
conditional.py Fix delegate_to localhost vs. 127.0.0.1 (and ::1) 2015-09-15 13:08:54 -04:00
handler.py Making the switch to v2 2015-05-03 21:47:26 -05:00
helpers.py Improve error catching from malformed playbook data 2015-09-23 08:56:36 -04:00
included_file.py Fix test of whether a result has a failed host 2015-09-25 12:09:27 -07:00
play.py Improve error catching from malformed playbook data 2015-09-23 08:56:36 -04:00
play_context.py Make ansible_pipelining a connection variable 2015-09-28 20:55:14 +05:30
playbook_include.py Replace .iteritems() with six.iteritems() 2015-09-03 09:23:27 +03:00
taggable.py Cleanups: 2015-07-23 12:13:45 -07:00
task.py Fix parent attribute lookup to be default 2015-09-26 11:28:29 -04:00
vars.py Making the switch to v2 2015-05-03 21:47:26 -05:00
vars_file.py Making the switch to v2 2015-05-03 21:47:26 -05:00