From 6194fc95322ef53c44a59a32ff42762075ab2e80 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Fri, 21 Mar 2025 15:53:02 +0100 Subject: [PATCH] Disable pipelining for machinectl --- plugins/become/machinectl.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/become/machinectl.py b/plugins/become/machinectl.py index 81a9d06f86..7fa1c03fc2 100644 --- a/plugins/become/machinectl.py +++ b/plugins/become/machinectl.py @@ -106,6 +106,7 @@ class BecomeModule(BecomeBase): fail = ('==== AUTHENTICATION FAILED ====',) success = ('==== AUTHENTICATION COMPLETE ====',) require_tty = True # see https://github.com/ansible-collections/community.general/issues/6932 + has_pipelining = False # see https://github.com/ansible/ansible/pull/84878 @staticmethod def remove_ansi_codes(line):