diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 07:24:23 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 07:24:23 +0000 |
commit | 1e99b22ed2aa3bfed7ae8a7c1ca5c4bb99148a0e (patch) | |
tree | ff57125a72fceeaa526bb76fda2bcd1adfd4c20f /debian/bind9.postrm | |
parent | Adding upstream version 1:9.16.44. (diff) | |
download | bind9-1e99b22ed2aa3bfed7ae8a7c1ca5c4bb99148a0e.tar.xz bind9-1e99b22ed2aa3bfed7ae8a7c1ca5c4bb99148a0e.zip |
Adding debian version 1:9.16.44-1~deb11u1.debian/1%9.16.44-1_deb11u1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/bind9.postrm')
-rw-r--r-- | debian/bind9.postrm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/bind9.postrm b/debian/bind9.postrm new file mode 100644 index 0000000..27239c0 --- /dev/null +++ b/debian/bind9.postrm @@ -0,0 +1,18 @@ +#!/bin/sh + +set -e + +#DEBHELPER# + +if [ "$1" = "purge" ]; then + rm -f /etc/bind/rndc.key + rmdir /etc/bind >/dev/null 2>&1 || true + rm -f /etc/apparmor.d/force-complain/usr.sbin.named >/dev/null 2>&1 || true + rmdir /var/lib/bind || true + # delete bind daemon user, if it exists + if getent passwd bind > /dev/null ; then + deluser --quiet bind > /dev/null || true + fi +fi + +exit 0 |