mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-10 02:41:30 +00:00
Port #10258 to v2
This commit is contained in:
@@ -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())
|
||||
|
||||
|
||||
Reference in New Issue
Block a user