now also captrure OSErrors on temp file

fixes #360
This commit is contained in:
Brian Coca 2015-04-01 20:44:28 -04:00
parent f901fd0160
commit 89284bcce0

View file

@ -137,11 +137,11 @@ def enforce_state(module, params):
outf.write(key)
outf.close()
module.atomic_move(outf.name,path)
except IOError,e:
except (IOError,OSError),e:
module.fail_json(msg="Failed to write to file %s: %s" % \
(path,str(e)))
params['changed'] = True
return params
def sanity_check(module,host,key,sshkeygen):