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

@ -22,7 +22,7 @@
ansible.builtin.template:
dest: /etc/sysconfig/kdc-container
src: kdc-container.sysconfig.j2
mode: 0600
mode: "0600"
owner: root
group: "{{ ansible_wheel }}"
@ -30,7 +30,7 @@
ansible.builtin.copy:
dest: /etc/systemd/system/kdc-container.service
src: kdc-container.service
mode: 0644
mode: "0644"
owner: root
group: "{{ ansible_wheel }}"
@ -47,7 +47,7 @@
location /KdcProxy {
proxy_pass http://127.0.0.1:8001;
}
mode: 0644
mode: "0644"
owner: root
group: "{{ ansible_wheel }}"
notify: Restart nginx