Fix "Forbidden implicit octal value" lint errors

This commit is contained in:
Timo Makinen 2023-10-12 19:14:54 +00:00
parent 1e973b3dde
commit 86d076ebc6
75 changed files with 227 additions and 227 deletions

View file

@ -38,7 +38,7 @@
ansible.builtin.file:
path: /etc/logrotate.d/influxdb
state: file
mode: 0644
mode: "0644"
owner: root
group: "{{ ansible_wheel }}"
@ -46,7 +46,7 @@
ansible.builtin.file:
path: /export/influxdb
state: directory
mode: 0750
mode: "0750"
owner: influxdb
group: influxdb
@ -63,7 +63,7 @@
ansible.builtin.copy:
dest: /etc/influxdb/config.toml
src: config.toml
mode: 0644
mode: "0644"
owner: root
group: "{{ ansible_wheel }}"
notify: Restart influxdb
@ -87,7 +87,7 @@
location / {
proxy_pass http://127.0.0.1:8086/;
}
mode: 0644
mode: "0644"
owner: root
group: "{{ ansible_wheel }}"
notify: Restart nginx