12 lines
265 B
Bash
12 lines
265 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ remove = "$1" ] && cd /var/spool/postfix
|
|
then
|
|
# remove chroot files (for main instance only)
|
|
# do this in prerm to stop dpkg from removing non-emoty dirs
|
|
rm -rf dev etc lib usr
|
|
#XXX remove the queue files too?
|
|
fi
|
|
|
|
#DEBHELPER#
|