You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2025-08-09 05:02:44 +03:00
Migrated my .deb changes into SVN. Feedback welcome...
git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@653 a1433add-5e2c-0410-b055-b7f2511e0802
This commit is contained in:
26
debian/postfixadmin.postrm
vendored
Normal file
26
debian/postfixadmin.postrm
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
#!/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
|
||||
|
||||
# restart the webserver only if we know which one was configured.
|
||||
if db_get postfixadmin/reconfigure-webserver; then
|
||||
servers="$RET"
|
||||
restart=$servers
|
||||
linkname="postfixadmin"
|
||||
. /usr/share/wwwconfig-common/restart.sh
|
||||
fi
|
||||
|
||||
if [ -f /usr/share/dbconfig-common/dpkg/postrm ]; then
|
||||
. /usr/share/dbconfig-common/dpkg/postrm
|
||||
dbc_go postfixadmin $@
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
exit 0
|
Reference in New Issue
Block a user