summaryrefslogtreecommitdiff
path: root/lib/ansible/module_utils/common/file.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/module_utils/common/file.py')
-rw-r--r--lib/ansible/module_utils/common/file.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/module_utils/common/file.py b/lib/ansible/module_utils/common/file.py
index 3ca1253e82..9703ea782e 100644
--- a/lib/ansible/module_utils/common/file.py
+++ b/lib/ansible/module_utils/common/file.py
@@ -59,7 +59,7 @@ PERMS_RE = re.compile(r'[^rwxXstugo]')
_PERM_BITS = 0o7777 # file mode permission bits
_EXEC_PERM_BITS = 0o0111 # execute permission bits
-_DEFAULT_PERM = 0o0660 # default file permission bits
+_DEFAULT_PERM = 0o0666 # default file permission bits
def is_executable(path):