Fix "Forbidden implicit octal value" lint errors
This commit is contained in:
parent
1e973b3dde
commit
86d076ebc6
75 changed files with 227 additions and 227 deletions
|
@ -18,7 +18,7 @@
|
|||
ansible.builtin.file:
|
||||
path: /etc/ssh/logsync
|
||||
state: directory
|
||||
mode: 0750
|
||||
mode: "0750"
|
||||
owner: root
|
||||
group: logsync
|
||||
|
||||
|
@ -41,7 +41,7 @@
|
|||
path: "{{ item }}"
|
||||
owner: root
|
||||
group: logsync
|
||||
mode: 0640
|
||||
mode: "0640"
|
||||
with_items:
|
||||
- /etc/ssh/logsync/id_ed25519
|
||||
- /etc/ssh/logsync/id_ed25519.pub
|
||||
|
@ -60,7 +60,7 @@
|
|||
ansible.builtin.file:
|
||||
path: /var/cache/sync-http-logs
|
||||
state: directory
|
||||
mode: 0750
|
||||
mode: "0750"
|
||||
owner: logsync
|
||||
group: logsync
|
||||
|
||||
|
@ -68,7 +68,7 @@
|
|||
ansible.builtin.file:
|
||||
path: /export/web-log
|
||||
state: directory
|
||||
mode: 0750
|
||||
mode: "0750"
|
||||
owner: root
|
||||
group: "{{ ansible_wheel }}"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue