33 lines
665 B
YAML
33 lines
665 B
YAML
---
|
|
# tasks file for dnsmasq
|
|
|
|
- name: Install dnsmasq
|
|
ansible.builtin.package:
|
|
name: dnsmasq
|
|
when: ansible_facts['pkg_mgr'] == "apt"
|
|
become: true
|
|
|
|
- name: Install dnsmasq
|
|
ansible.builtin.command:
|
|
argv:
|
|
- /usr/bin/rpm-ostree
|
|
- install
|
|
- --allow-inactive
|
|
- --assumeyes
|
|
- --idempotent
|
|
- dnsmasq
|
|
creates: /usr/sbin/dnsmasq
|
|
when: ansible_facts['pkg_mgr'] == "atomic_container"
|
|
become: true
|
|
notify: Apply installation
|
|
|
|
- name: Flush handlers
|
|
meta: flush_handlers
|
|
|
|
- name: Enable dnsmasq.service
|
|
ansible.builtin.systemd_service:
|
|
name: dnsmasq.service
|
|
masked: false
|
|
enabled: true
|
|
become: true
|