2024-08-02 04:27:30 +00:00
|
|
|
- name: install sdns
|
|
|
|
|
apt:
|
2025-10-07 03:19:55 +00:00
|
|
|
deb: https://github.com/semihalev/sdns/releases/download/v1.6.0/sdns_1.6.0_x86_64.deb
|
2024-08-02 04:27:30 +00:00
|
|
|
- name: copy sdns config
|
|
|
|
|
copy:
|
|
|
|
|
src: "{{ playbook_dir }}/files/sdns.conf"
|
|
|
|
|
dest: "/etc/sdns.conf"
|
|
|
|
|
notify: "restart sdns"
|
|
|
|
|
- name: ensure sdns is running
|
|
|
|
|
service: name=sdns state=started enabled=yes
|