mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-18 13:11:21 -03:30
Some systems (e.g. CentOS on Azure) have requiretty in sudoers which makes pipelining fail.
7 lines
153 B
YAML
7 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
|
|
|