split role in multiple files

Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
This commit is contained in:
GnomeZworc 2025-11-24 23:30:06 +01:00
commit 165b48cd61
Signed by: nicolas.boufideline
GPG key ID: 4406BBBF8845D632
4 changed files with 59 additions and 47 deletions

20
tasks/dnsmasq.yml Normal file
View file

@ -0,0 +1,20 @@
---
- name: disable and stop dnsmasq
ansible.builtin.systemd:
name: "dnsmasq.service"
enabled: False
state: "stopped"
masked: true
notify: systemctl daemon-reload
- name: deploy dnsmasq
ansible.builtin.template:
src: etc/systemd/system/dnsmasq.j2
dest: "/etc/systemd/system/dnsmasq@.service"
notify: systemctl daemon-reload
- name: deploy dnsmasq in netns
ansible.builtin.template:
src: usr/local/bin/run-dnsmasq-in-netns.sh.j2
dest: "/usr/local/bin/run-dnsmasq-in-netns.sh"