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:
parent
6dddd5b167
commit
66a41f59fd
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@ Looping over Fileglobs
|
|||
src: "{{ item }}"
|
||||
dest: "/etc/fooapp/"
|
||||
owner: "root"
|
||||
mode: 600
|
||||
mode: 0600
|
||||
with_fileglob:
|
||||
- "/playbooks/files/fooapp/*"
|
||||
|
||||
|
|
Loading…
Reference in a new issue