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:
Marty Oehme 2025-11-20 22:44:52 +01:00
parent 40b687a3f3
commit b855494cf5
Signed by: Marty
GPG key ID: 4E535BC19C61886E

View file

@ -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