summaryrefslogtreecommitdiff
path: root/community-testing/unbound/install
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing/unbound/install')
-rw-r--r--community-testing/unbound/install10
1 files changed, 10 insertions, 0 deletions
diff --git a/community-testing/unbound/install b/community-testing/unbound/install
new file mode 100644
index 000000000..964792592
--- /dev/null
+++ b/community-testing/unbound/install
@@ -0,0 +1,10 @@
+post_install() {
+ getent group unbound &>/dev/null || groupadd -r unbound >/dev/null
+ getent passwd unbound &>/dev/null || useradd -r -g unbound -d /etc/unbound -s /bin/false -c unbound unbound >/dev/null
+}
+
+post_remove() {
+ getent passwd unbound &>/dev/null && userdel unbound >/dev/null
+ getent group unbound &>/dev/null && groupdel unbound >/dev/null
+ return 0
+}