1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #10518 from pilou-/file_mode_v2

Port #10258 to v2
This commit is contained in:
Toshio Kuratomi 2015-03-22 19:56:03 -07:00
commit 7115d37933

View file

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