Uncomment the line that removes the temporary identity file.

This commit is contained in:
Gareth J. Greenaway 2017-07-21 10:01:55 -07:00
parent e2120dbd0e
commit ff24102d51

View file

@ -261,7 +261,7 @@ def _git_run(command, cwd=None, user=None, password=None, identity=None,
# Cleanup the temporary identify file
if tmp_identity_file and os.path.exists(tmp_identity_file):
log.debug('Removing identify file {0}'.format(tmp_identity_file))
#__salt__['file.remove'](tmp_identity_file)
__salt__['file.remove'](tmp_identity_file)
# If the command was successful, no need to try additional IDs
if result['retcode'] == 0: