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

Add a missing leading zero in a mode parameter

600 is an incorrect mode, because mode needs to be octal.
This commit is contained in:
Strahinja Kustudic 2017-04-27 10:17:38 +02:00 committed by Toshio Kuratomi
parent 6dddd5b167
commit 66a41f59fd

View file

@ -170,7 +170,7 @@ Looping over Fileglobs
src: "{{ item }}"
dest: "/etc/fooapp/"
owner: "root"
mode: 600
mode: 0600
with_fileglob:
- "/playbooks/files/fooapp/*"