feat: Enable ansible pipelining, Disable python warning
Pipelining speeds up the playbook execution. It _can_ have some negative effects on 'sudo' execution, and specifically requires `requiretty` not enabled in the sudoers file. Since this seems (by default) to be the case on debian distributions, I am trying to switch to pipelining for the time being.
This commit is contained in:
parent
40b687a3f3
commit
b855494cf5
1 changed files with 7 additions and 0 deletions
|
|
@ -1,4 +1,11 @@
|
||||||
[defaults]
|
[defaults]
|
||||||
remote_tmp = /tmp
|
remote_tmp = /tmp
|
||||||
inventory = inventory
|
inventory = inventory
|
||||||
|
|
||||||
roles_path = .ansible/roles:roles
|
roles_path = .ansible/roles:roles
|
||||||
|
collections_path = .ansible/collections
|
||||||
|
|
||||||
|
interpreter_python = auto_silent
|
||||||
|
|
||||||
|
[ssh_connection]
|
||||||
|
pipelining = True
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue