Fix umask calculation on file creation. Fixes #10257

pull/10258/head
Stratos Moros 10 years ago
parent 6a29251292
commit 6caeded74e

@ -1391,7 +1391,7 @@ class AnsibleModule(object):
# based on the current value of umask # based on the current value of umask
umask = os.umask(0) umask = os.umask(0)
os.umask(umask) os.umask(umask)
os.chmod(dest, 0666 ^ umask) os.chmod(dest, 0666 & ~umask)
if switched_user: if switched_user:
os.chown(dest, os.getuid(), os.getgid()) os.chown(dest, os.getuid(), os.getgid())

Loading…
Cancel
Save