default copy perms look like 0644 now based on ansible source and docs

This commit is contained in:
Steven Robertson 2020-10-03 16:10:50 -07:00
parent 4b37699b45
commit 22bc5448b1
1 changed files with 1 additions and 2 deletions

View File

@ -5,9 +5,8 @@
hosts: test-targets
any_errors_fatal: true
tasks:
# default file mode changed to 600 from 666 as of Ansible 2.9.12: https://github.com/geerlingguy/ansible-for-devops/issues/314#issuecomment-675802282
- name: Get default remote file mode
shell: python -c 'import os; print("%04o" % (int("0600", 8) & ~os.umask(0)))'
shell: python -c 'import os; print("%04o" % (int("0644", 8) & ~os.umask(0)))'
register: py_umask
- name: Set default file mode