From 0e764bd6a393ec1a7e876e4cafbbf0665e78849c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 17:59:49 +0200 Subject: Adding debian version 1:9.18.19-1~deb12u1. Signed-off-by: Daniel Baumann --- debian/bind9.postrm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 debian/bind9.postrm (limited to 'debian/bind9.postrm') 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 -- cgit v1.2.3