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
|
@ -3,7 +3,7 @@
|
|||
ansible.builtin.copy:
|
||||
dest: /etc/myname
|
||||
content: "{{ inventory_hostname }}\n"
|
||||
mode: 0644
|
||||
mode: "0644"
|
||||
owner: root
|
||||
group: "{{ ansible_wheel }}"
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
|||
ansible.builtin.copy:
|
||||
dest: /etc/installurl
|
||||
content: "https://mirrors.foo.sh/openbsd/\n"
|
||||
mode: 0644
|
||||
mode: "0644"
|
||||
owner: root
|
||||
group: "{{ ansible_wheel }}"
|
||||
when: ansible_datacenter == "home"
|
||||
|
@ -30,7 +30,7 @@
|
|||
ansible.builtin.copy:
|
||||
dest: "{{ item }}"
|
||||
content: "VERBOSESTATUS=0\n"
|
||||
mode: 0644
|
||||
mode: "0644"
|
||||
owner: root
|
||||
group: "{{ ansible_wheel }}"
|
||||
with_items:
|
||||
|
@ -53,7 +53,7 @@
|
|||
ansible.builtin.file:
|
||||
name: /srv
|
||||
state: directory
|
||||
mode: 0755
|
||||
mode: "0755"
|
||||
owner: root
|
||||
group: "{{ ansible_wheel }}"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue