xoxys.dnsmasq/tasks/main.yml
Robert Kaussow a6998a80ec
Some checks failed
continuous-integration/drone/push Build is failing
fix: add configuration for listen address
2023-06-21 08:39:53 +02:00

22 lines
458 B
YAML

---
- block:
- name: Install package
package:
name: dnsmasq
state: present
- name: Create dnsmasq configuration
template:
src: "etc/dnsmasq.d/local.conf.j2"
dest: "/etc/dnsmasq.d/local.conf"
mode: 0644
notify: __dnsmasq_restart
- name: Ensure dnsmasq is up and running
service:
name: dnsmasq
enabled: True
state: started
become: True
become_user: root