2020-11-29 00:12:15 +00:00
|
|
|
---
|
2023-05-11 20:37:41 +00:00
|
|
|
- name: create directory
|
2020-11-29 00:12:15 +00:00
|
|
|
file:
|
2023-05-11 20:37:41 +00:00
|
|
|
path: /srv/dhcp/config
|
2020-11-29 00:12:15 +00:00
|
|
|
state: directory
|
|
|
|
|
|
|
|
- name: Create dhcpd.conf
|
2023-05-11 20:37:41 +00:00
|
|
|
become: yes
|
2020-11-29 00:12:15 +00:00
|
|
|
template:
|
|
|
|
src: etc/dhcpd/dhcpd.conf.j2
|
2023-05-11 20:37:41 +00:00
|
|
|
dest: /srv/dhcp/config/dhcpd.conf
|
2020-11-29 00:12:15 +00:00
|
|
|
vars:
|
2023-05-11 20:37:41 +00:00
|
|
|
network: "{{ lan }}"
|
|
|
|
|
|
|
|
- name: restart container
|
|
|
|
shell:
|
|
|
|
cmd: docker service update --force --detach dhcp
|