summaryrefslogtreecommitdiff
path: root/community/unbound/install
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/unbound/install
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/unbound/install')
-rw-r--r--community/unbound/install10
1 files changed, 0 insertions, 10 deletions
diff --git a/community/unbound/install b/community/unbound/install
deleted file mode 100644
index 964792592..000000000
--- a/community/unbound/install
+++ /dev/null
@@ -1,10 +0,0 @@
-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
-}