7abcf6e0b9
Some systems (e.g. CentOS on Azure) have requiretty in sudoers which makes pipelining fail.
6 lines
153 B
YAML
6 lines
153 B
YAML
---
|
|
# Remove requiretty to make ssh pipelining work
|
|
|
|
- name: Remove require tty
|
|
lineinfile: regexp="^\w+\s+requiretty" dest=/etc/sudoers state=absent
|
|
|