1
0
mirror of https://git.libreschool.org/paspo/brasatore.git synced 2024-11-22 14:18:44 +00:00
brasatore/roles/pxeserver/tasks/dns.yml

31 lines
528 B
YAML
Raw Normal View History

2023-10-26 19:15:51 +00:00
---
- name: DNSMASQ dhcp
template:
src: dnsmasq/dhcp
dest: /etc/dnsmasq.d/dhcp
owner: root
group: root
mode: "0644"
become: true
notify: dnsmasq_restart
- name: DNSMASQ tftp
template:
src: dnsmasq/tftp
dest: /etc/dnsmasq.d/tftp
owner: root
group: root
mode: "0644"
become: true
notify: dnsmasq_restart
- name: DNSMASQ dns
template:
src: dnsmasq/dns
dest: /etc/dnsmasq.d/dns
owner: root
group: root
mode: "0644"
become: true
notify: dnsmasq_restart