This repository has been archived on 2023-12-26. You can view files and clone it, but cannot push or open issues or pull requests.
hermes/ansible/hermes.yml
2023-06-13 23:22:33 +02:00

17 lines
353 B
YAML

- name: Wait for cloud-init to finish
hosts: all
gather_facts: no
roles:
- cloudinit-wait
- name: Install services
hosts: all
pre_tasks:
- name: Copy resolv.conf
copy:
src: resolv.conf
dest: /etc/resolv.conf
roles:
- {role: apt, tags: apt}
- {role: dnsmasq, tags: dnsmasq}
- {role: nsd, tags: nsd}