xoxys.dnsmasq/tasks/setup.yml

15 lines
264 B
YAML
Raw Normal View History

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