10 lines
177 B
YAML
10 lines
177 B
YAML
---
|
|
# handlers file for dhcpd
|
|
|
|
- name: restart dhcpd
|
|
ansible.builtin.service:
|
|
name: "{{ dhcpd_service }}"
|
|
state: restarted
|
|
when:
|
|
- not ansible_check_mode | bool
|