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

18 lines
377 B
YAML
Raw Normal View History

2023-04-14 09:11:35 +00:00
- name: Wait for cloud-init to finish
hosts: all
gather_facts: no
2023-04-14 09:11:35 +00:00
roles:
2023-04-23 21:50:30 +00:00
- cloudinit-wait
2023-04-14 09:11:35 +00:00
- name: Install services
hosts: all
2023-04-23 22:00:28 +00:00
pre_tasks:
- name: Copy resolv.conf
copy:
src: resolv.conf
dest: /etc/resolv.conf
roles:
- {role: 'setup-apt', tags: 'setup-apt'}
- {role: 'dnsmasq', tags: 'dnsmasq'}
- {role: 'nsd', tags: 'nsd'}