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
|
@ -14,7 +14,7 @@
|
|||
ansible.builtin.copy:
|
||||
dest: "{{ tls_private }}/grafana.key"
|
||||
src: "{{ tls_private }}/{{ inventory_hostname }}.key"
|
||||
mode: 0640
|
||||
mode: "0640"
|
||||
owner: root
|
||||
group: grafana
|
||||
remote_src: true
|
||||
|
@ -23,7 +23,7 @@
|
|||
ansible.builtin.template:
|
||||
dest: /etc/sysconfig/grafana-container
|
||||
src: grafana-container.sysconfig.j2
|
||||
mode: 0600
|
||||
mode: "0600"
|
||||
owner: root
|
||||
group: "{{ ansible_wheel }}"
|
||||
notify: Restart grafana
|
||||
|
@ -32,7 +32,7 @@
|
|||
ansible.builtin.template:
|
||||
dest: /etc/systemd/system/grafana-container.service
|
||||
src: grafana-container.service.j2
|
||||
mode: 0644
|
||||
mode: "0644"
|
||||
owner: root
|
||||
group: "{{ ansible_wheel }}"
|
||||
notify: Restart grafana
|
||||
|
@ -41,7 +41,7 @@
|
|||
ansible.builtin.template:
|
||||
dest: /etc/grafana-ldap.toml
|
||||
src: grafana-ldap.toml.j2
|
||||
mode: 0640
|
||||
mode: "0640"
|
||||
owner: root
|
||||
group: grafana
|
||||
notify: Restart grafana
|
||||
|
@ -60,7 +60,7 @@
|
|||
proxy_set_header Host noc.foo.sh;
|
||||
proxy_pass http://localhost:8002/;
|
||||
}
|
||||
mode: 0644
|
||||
mode: "0644"
|
||||
owner: root
|
||||
group: "{{ ansible_wheel }}"
|
||||
notify: Restart nginx
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue