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

@ -26,7 +26,7 @@
ansible.builtin.file:
path: /export/backup
state: directory
mode: 0755
mode: "0755"
owner: root
group: "{{ ansible_wheel }}"
@ -43,7 +43,7 @@
ansible.builtin.file:
path: /export/backup/bitbucket.org
state: directory
mode: 0775
mode: "0775"
owner: root
group: backup
@ -51,7 +51,7 @@
ansible.builtin.copy:
dest: /usr/local/sbin/backup-bitbucket
src: backup-bitbucket.py
mode: 0755
mode: "0755"
owner: root
group: "{{ ansible_wheel }}"