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.template:
|
||||
src: hostname.if.j2
|
||||
dest: "/etc/hostname.{{ item.device }}"
|
||||
mode: 0600
|
||||
mode: "0600"
|
||||
owner: root
|
||||
group: "{{ ansible_wheel }}"
|
||||
with_items: "{{ network_interfaces }}"
|
||||
|
@ -13,7 +13,7 @@
|
|||
ansible.builtin.template:
|
||||
src: hostname.carp.j2
|
||||
dest: "/etc/hostname.carp{{ item.vhid }}"
|
||||
mode: 0600
|
||||
mode: "0600"
|
||||
owner: root
|
||||
group: "{{ ansible_wheel }}"
|
||||
with_items: "{{ network_vip_interfaces }}"
|
||||
|
@ -34,7 +34,7 @@
|
|||
ansible.builtin.copy:
|
||||
content: "{{ network_default_gateway }}\n"
|
||||
dest: /etc/mygate
|
||||
mode: 0600
|
||||
mode: "0600"
|
||||
owner: root
|
||||
group: "{{ ansible_wheel }}"
|
||||
notify: Restart network
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue