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

@ -21,7 +21,7 @@
ansible.builtin.file:
path: /export/zoneminder
state: directory
mode: 0750
mode: "0750"
owner: apache
group: apache
setype: _default
@ -39,7 +39,7 @@
ansible.builtin.template:
dest: /etc/zm/conf.d/local.conf
src: zm.conf
mode: 0640
mode: "0640"
owner: root
group: apache
notify: Restart zoneminder
@ -76,7 +76,7 @@
ansible.builtin.file:
dest: /var/log/zoneminder/web_php.log
state: touch
mode: 0640
mode: "0640"
owner: apache
group: apache
access_time: preserve
@ -104,7 +104,7 @@
ansible.builtin.copy:
dest: /etc/php.d/timezone.ini
content: "date.timezone=UTC\n"
mode: 0644
mode: "0644"
owner: root
group: "{{ ansible_wheel }}"
notify: Restart apache
@ -118,7 +118,7 @@
ssl-ca={{ tls_certs }}/ca.crt
ssl-cert={{ tls_certs }}/{{ inventory_hostname }}.crt
ssl-key={{ tls_private }}/{{ inventory_hostname }}.key
mode: 0600
mode: "0600"
owner: root
group: "{{ ansible_wheel }}"