From a2525658f923d76ae0c855f5a13376c30815bc07 Mon Sep 17 00:00:00 2001 From: Will Thames Date: Tue, 26 Sep 2017 15:56:18 +1000 Subject: [PATCH] Remove print statements from play_context Caused spurious output, particularly obvious when in `become` mode (cherry picked from commit ef56f9a44cc179bfdd800c6f3186820ca056ad84) --- CHANGELOG.md | 1 + lib/ansible/playbook/play_context.py | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e91f9b21e6e..216a2744844 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,6 +41,7 @@ Ansible Changes By Release * performance improvment for inventory, had slown down considerably from 2.3 * Fix cpu facts on sparc64 (https://github.com/ansible/ansible/pull/30261) * Fix ansible_distribution fact for Arch linux (https://github.com/ansible/ansible/issues/30600) +* remove print statements from play_context/become diff --git a/lib/ansible/playbook/play_context.py b/lib/ansible/playbook/play_context.py index 6d48ed2539e..5393cf58393 100644 --- a/lib/ansible/playbook/play_context.py +++ b/lib/ansible/playbook/play_context.py @@ -545,8 +545,6 @@ class PlayContext(Base): # set flags to use for the privilege escalation method, with various overrides flags = self.become_flags or getattr(self, '%s_flags' % self.become_method, '') - print(exe) - print(flags) if self.become_method == 'sudo': # If we have a password, we run sudo with a randomly-generated # prompt set using -p. Otherwise we run it with default -n, which makes