From ac0a5c8ad54287075a4208b75d7748f6b5b9229f Mon Sep 17 00:00:00 2001 From: Richard C Isaacson Date: Wed, 5 Feb 2014 11:39:22 -0600 Subject: [PATCH] Dug into the remaining FIXME and replaced with comments to document the expected behavior. --- lib/ansible/runner/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/ansible/runner/__init__.py b/lib/ansible/runner/__init__.py index 4dba447ec4b..22d2941ce7d 100644 --- a/lib/ansible/runner/__init__.py +++ b/lib/ansible/runner/__init__.py @@ -963,8 +963,9 @@ class Runner(object): if "-tmp-" in tmp_path: cmd = "rm -rf %s >/dev/null 2>&1" % tmp_path - result = self._low_level_exec_command(conn, cmd, None, sudoable=False) - # FIXME Do something with the result? + self._low_level_exec_command(conn, cmd, None, sudoable=False) + # If we have gotten here we have a working ssh configuration. + # If ssh breaks we could leave tmp directories out on the remote system. # *****************************************************