mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
ignore PE methods that are not sudo for checksums until we get them working universally
This commit is contained in:
parent
85cfe1bd52
commit
456f83962d
1 changed files with 7 additions and 1 deletions
|
@ -1243,7 +1243,13 @@ class Runner(object):
|
|||
python_interp = 'python'
|
||||
|
||||
cmd = conn.shell.checksum(path, python_interp)
|
||||
data = self._low_level_exec_command(conn, cmd, tmp, sudoable=True)
|
||||
|
||||
#TODO: remove this horrible hack and find way to get checksum to work with other privilege escalation methods
|
||||
if self.become_method == 'sudo':
|
||||
sudoable = True
|
||||
else:
|
||||
sudoable = False
|
||||
data = self._low_level_exec_command(conn, cmd, tmp, sudoable=sudoable)
|
||||
data2 = utils.last_non_blank_line(data['stdout'])
|
||||
try:
|
||||
if data2 == '':
|
||||
|
|
Loading…
Reference in a new issue