summaryrefslogtreecommitdiff
path: root/tasks/openbsd.yml
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2025-12-16 23:02:49 -0500
committerMitchell Riedstra <mitch@riedstra.dev>2025-12-16 23:02:49 -0500
commita468044c0337d1a2ac0dab2ce3efc4ad766f81a3 (patch)
treeca7d1523a6b43e14dc4fb6d2cd15966774faa237 /tasks/openbsd.yml
parent256ed8e7653b1963e1cc2b6d30aa636e9766d07b (diff)
downloadnsd-a468044c0337d1a2ac0dab2ce3efc4ad766f81a3.tar.gz
nsd-a468044c0337d1a2ac0dab2ce3efc4ad766f81a3.tar.xz
Rework the NSD role to support more operating systems with minimal effort and duplication
Diffstat (limited to 'tasks/openbsd.yml')
-rw-r--r--tasks/openbsd.yml22
1 files changed, 0 insertions, 22 deletions
diff --git a/tasks/openbsd.yml b/tasks/openbsd.yml
deleted file mode 100644
index 0d3e613..0000000
--- a/tasks/openbsd.yml
+++ /dev/null
@@ -1,22 +0,0 @@
----
-- name: 'Install nsd.conf'
- template:
- src: openbsd_nsd.conf
- dest: /var/nsd/etc/nsd.conf
- notify:
- - Restart NSD
-- name: Install zone files
- template:
- src: 'zones/{{item}}'
- dest: '/var/nsd/zones/master/{{item}}.zone'
- validate: 'nsd-checkzone {{item}} %s'
- owner: root
- group: wheel
- mode: 0644
- loop: "{{nsd_zones}}"
- notify:
- - Restart NSD
-- name: Enable nsd
- service:
- name: nsd
- enabled: yes