file does not exist is not an error when checksumming for the template modules

pull/9722/merge
Toshio Kuratomi 10 years ago
parent f2d2f425ae
commit 3a5aec9743

@ -92,7 +92,9 @@ class ActionModule(object):
local_checksum = utils.checksum_s(resultant)
remote_checksum = self.runner._remote_checksum(conn, tmp, dest, inject)
if remote_checksum in ('0', '1', '2', '3', '4'):
if remote_checksum in ('0', '2', '3', '4'):
# Note: 1 means the file is not present which is fine; template
# will create it
result = dict(failed=True, msg="failed to checksum remote file."
" Checksum error code: %s" % remote_checksum)
return ReturnData(conn=conn, comm_ok=True, result=result)

Loading…
Cancel
Save