From b855494cf5f14b004f301aa53d78285ee04844d7 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Thu, 20 Nov 2025 22:44:52 +0100 Subject: [PATCH] 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. --- ansible.cfg | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ansible.cfg b/ansible.cfg index 8734d30..25b7877 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -1,4 +1,11 @@ [defaults] remote_tmp = /tmp inventory = inventory + roles_path = .ansible/roles:roles +collections_path = .ansible/collections + +interpreter_python = auto_silent + +[ssh_connection] +pipelining = True