xoxys.dnsmasq/tasks/main.yml

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