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

Dug into the remaining FIXME and replaced with comments to document the expected behavior.

This commit is contained in:
Richard C Isaacson 2014-02-05 11:39:22 -06:00
parent a3261500dd
commit ac0a5c8ad5

View file

@ -963,8 +963,9 @@ class Runner(object):
if "-tmp-" in tmp_path: if "-tmp-" in tmp_path:
cmd = "rm -rf %s >/dev/null 2>&1" % tmp_path cmd = "rm -rf %s >/dev/null 2>&1" % tmp_path
result = self._low_level_exec_command(conn, cmd, None, sudoable=False) self._low_level_exec_command(conn, cmd, None, sudoable=False)
# FIXME Do something with the result? # If we have gotten here we have a working ssh configuration.
# If ssh breaks we could leave tmp directories out on the remote system.
# ***************************************************** # *****************************************************