mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00: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:
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/*"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user