This repository has been archived on 2020-08-18. You can view files and clone it, but cannot push or open issues or pull requests.
ansible-dns/tasks/main.yml

16 lines
327 B
YAML
Raw Normal View History

2020-04-02 17:48:34 +00:00
- name: Install Unbound
apt:
install_recommends: no
name: unbound
state: present
cache_valid_time: 3600
notify:
- Enable unbound
2020-04-02 17:48:34 +00:00
- name: Copy configuration files
copy:
follow: yes
src: roles/dns/files/
dest: /etc/unbound/
notify:
- Reload unbound