mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2025-01-18 08:06:16 +01:00
The discovery script now uses a regex and no longer cares where exactly accounting is enabled. Follow systemd upstream by enabling it by default. Signed-off-by: Florian Pritz <bluewind@xinu.at>
16 lines
400 B
YAML
16 lines
400 B
YAML
---
|
|
|
|
- name: Install unbound
|
|
pacman: name=unbound
|
|
|
|
- name: Install unbound config file
|
|
template: src=unbound.conf.j2 dest=/etc/unbound/unbound.conf owner=root group=root mode=0644
|
|
notify:
|
|
- restart unbound
|
|
|
|
- name: Create remote-control keys
|
|
command: unbound-control-setup creates=/etc/unbound/unbound_control.key
|
|
|
|
- name: Active service
|
|
service: name=unbound state=started enabled=yes
|