style(lint): quote mode
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
f791809f0f
commit
d8a1173946
@ -22,7 +22,7 @@
|
|||||||
dest: "{{ dhcpd_main_config }}"
|
dest: "{{ dhcpd_main_config }}"
|
||||||
owner: "{{ dhcpd_unix_user }}"
|
owner: "{{ dhcpd_unix_user }}"
|
||||||
group: "{{ dhcpd_unix_group }}"
|
group: "{{ dhcpd_unix_group }}"
|
||||||
mode: 0644
|
mode: "0644"
|
||||||
|
|
||||||
- name: Cleanup cache files
|
- name: Cleanup cache files
|
||||||
notify: Restart dhcpd
|
notify: Restart dhcpd
|
||||||
@ -41,14 +41,14 @@
|
|||||||
path: "{{ dhcpd_cache_directory }}"
|
path: "{{ dhcpd_cache_directory }}"
|
||||||
owner: "{{ dhcpd_unix_user }}"
|
owner: "{{ dhcpd_unix_user }}"
|
||||||
group: "{{ dhcpd_unix_group }}"
|
group: "{{ dhcpd_unix_group }}"
|
||||||
mode: 0755
|
mode: "0755"
|
||||||
state: directory
|
state: directory
|
||||||
- name: Create cache files
|
- name: Create cache files
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: "{{ dhcpd_cache_directory }}/{{ item }}"
|
path: "{{ dhcpd_cache_directory }}/{{ item }}"
|
||||||
owner: "{{ dhcpd_unix_user }}"
|
owner: "{{ dhcpd_unix_user }}"
|
||||||
group: "{{ dhcpd_unix_group }}"
|
group: "{{ dhcpd_unix_group }}"
|
||||||
mode: 0644
|
mode: "0644"
|
||||||
state: touch
|
state: touch
|
||||||
with_items:
|
with_items:
|
||||||
- dhcpd.leases
|
- dhcpd.leases
|
||||||
|
Loading…
Reference in New Issue
Block a user