xoxys.dnsmasq/tasks/setup.yml

15 lines
264 B
YAML
Raw Normal View History

2019-01-06 23:41:16 +01:00
---
- block:
- name: Install package
package:
name: dnsmasq
state: present
- name: Ensure dnsmasq is up and running
service:
2019-01-14 00:51:29 +01:00
name: dnsmasq
2019-01-06 23:41:16 +01:00
enabled: True
state: started
become: True
become_user: root