summaryrefslogtreecommitdiff
path: root/lib/ansible/plugins/connections/local.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/plugins/connections/local.py')
-rw-r--r--lib/ansible/plugins/connections/local.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/plugins/connections/local.py b/lib/ansible/plugins/connections/local.py
index e4eddbd4cb..e307798913 100644
--- a/lib/ansible/plugins/connections/local.py
+++ b/lib/ansible/plugins/connections/local.py
@@ -70,7 +70,7 @@ class Connection(ConnectionBase):
)
self._display.debug("done running command with Popen()")
- if self._play_context.prompt and self._play_context.become_pass and sudoable:
+ if self._play_context.prompt and sudoable:
fcntl.fcntl(p.stdout, fcntl.F_SETFL, fcntl.fcntl(p.stdout, fcntl.F_GETFL) | os.O_NONBLOCK)
fcntl.fcntl(p.stderr, fcntl.F_SETFL, fcntl.fcntl(p.stderr, fcntl.F_GETFL) | os.O_NONBLOCK)
become_output = ''