File: postfixadmin.postrm

package info (click to toggle)
postfixadmin 4.0.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,888 kB
  • sloc: php: 12,256; perl: 1,156; sh: 717; python: 142; xml: 63; sql: 3; makefile: 2
file content (30 lines) | stat: -rw-r--r-- 608 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/sh
set -e

if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then
	if [ -f /usr/share/debconf/confmodule ]; then
		. /usr/share/debconf/confmodule
		db_version 2.0

		if [ -f /usr/share/dbconfig-common/dpkg/postrm ]; then
			. /usr/share/dbconfig-common/dpkg/postrm
			dbc_go postfixadmin $@
		fi
	fi

	if [ "$1" = "purge" ]; then
		rm -f /etc/postfixadmin/dbconfig.inc.php
		rm -f /etc/dbconfig-common/postfixadmin.conf
		rm -f /etc/postfixadmin/config.local.php
		if which ucf >/dev/null 2>&1; then
			ucf --purge /etc/postfixadmin/dbconfig.inc.php
		fi

		db_purge || true

	fi
fi

#DEBHELPER#

exit 0