You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
612 B
Bash
29 lines
612 B
Bash
#!/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
|
|
if which ucf >/dev/null 2>&1; then
|
|
ucf --purge /etc/postfixadmin/dbconfig.inc.php
|
|
fi
|
|
|
|
db_purge || true
|
|
|
|
fi
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|