Merge pull request #3706 from lorin/sudo_user_breakage

Fix sudo_user copy error
This commit is contained in:
Michael DeHaan 2013-08-01 17:15:26 -07:00
commit 44d060628e

View file

@ -869,8 +869,8 @@ class AnsibleModule(object):
# Optimistically try a rename, solves some corner cases and can avoid useless work.
os.rename(src, dest)
except (IOError,OSError), e:
# only try workarounds for errno 18 (cross device) and 1 (not permited)
if e.errno != errno.EPERM and e.errno != errno.EXDEV:
# only try workarounds for errno 18 (cross device), 1 (not permited) and 13 (permission denied)
if e.errno != errno.EPERM and e.errno != errno.EXDEV and e.errno != errno.EACCES:
self.fail_json(msg='Could not replace file: %s to %s: %s' % (src, dest, e))
dest_dir = os.path.dirname(dest)