File: bind9.postrm

package info (click to toggle)
bind9 1%3A9.16.50-1~deb11u2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 50,580 kB
  • sloc: ansic: 330,886; sh: 53,968; perl: 7,832; python: 3,949; makefile: 3,555; cpp: 2,156; xml: 114; lisp: 31
file content (18 lines) | stat: -rw-r--r-- 375 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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