Add a missing leading zero in a mode parameter

600 is an incorrect mode, because mode needs to be octal.
pull/23929/head
Strahinja Kustudic 8 years ago committed by Toshio Kuratomi
parent 6dddd5b167
commit 66a41f59fd

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

Loading…
Cancel
Save