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

@ -28,7 +28,7 @@
ansible.builtin.copy:
dest: /usr/local/share/selinux/homeassistant-local.pp
src: homeassistant-local.pp
mode: 0644
mode: "0644"
owner: root
group: "{{ ansible_wheel }}"
@ -59,7 +59,7 @@
ansible.builtin.file:
path: /export/homeassistant
state: directory
mode: 0700
mode: "0700"
owner: ha
group: ha
setype: _default
@ -77,7 +77,7 @@
ansible.builtin.copy:
dest: /srv/homeassistant/auth-command.sh
src: auth-command.sh
mode: 0755
mode: "0755"
owner: root
group: "{{ ansible_wheel }}"
setype: _default
@ -86,7 +86,7 @@
ansible.builtin.file:
path: "{{ item }}"
state: directory
mode: 0755
mode: "0755"
owner: root
group: "{{ ansible_wheel }}"
setype: _default
@ -117,7 +117,7 @@
ansible.builtin.template:
dest: /etc/systemd/system/homeassistant-container.service
src: homeassistant-container.service.j2
mode: 0644
mode: "0644"
owner: root
group: "{{ ansible_wheel }}"
notify: Restart homeassistant
@ -135,7 +135,7 @@
location / {
proxy_pass http://127.0.0.1:8001;
}
mode: 0644
mode: "0644"
owner: root
group: "{{ ansible_wheel }}"
notify: Restart nginx