diff options
Diffstat (limited to 'community/nsd/install')
-rw-r--r-- | community/nsd/install | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/community/nsd/install b/community/nsd/install deleted file mode 100644 index 5a5f41dd7..000000000 --- a/community/nsd/install +++ /dev/null @@ -1,12 +0,0 @@ -post_install() { - getent group nsd &>/dev/null || groupadd -r nsd >/dev/null - getent passwd nsd &>/dev/null || useradd -r -g nsd -d /dev/null -s /bin/false -c nsd nsd >/dev/null - chown nsd:nsd /var/db/nsd - chmod 700 /var/db/nsd -} - -post_remove() { - getent passwd nsd &>/dev/null && userdel nsd >/dev/null - getent group nsd &>/dev/null && groupdel nsd >/dev/null - true -} |