1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fixes #5030 compare connection user and sudo user and disable sudo if identical

This commit is contained in:
James Tanner 2013-11-27 17:01:53 -05:00
parent 12ed39ef7b
commit b6879ca2bd

View file

@ -763,8 +763,10 @@ class Runner(object):
sudo_user = self.sudo_user
if self.remote_user == sudo_user:
sudoable = False
# compare connection user to sudo_user and disable if the same
if hasattr(conn, 'user'):
if conn.user == sudo_user:
sudoable = False
rc, stdin, stdout, stderr = conn.exec_command(cmd, tmp, sudo_user, sudoable=sudoable, executable=executable)