8973879ff6b8c66ebeb149c925f3818fcdc12b5a
[mailman-cn.git] / debian / postrm
1 #!/bin/sh
2
3 set -e
4
5 [ "$1" = "purge" ] || exit 0
6
7 if [ /etc/apache2/conf.d/mailman-cn.conf ]; then
8   rm -f /etc/apache2/conf.d/mailman-cn.conf
9 fi
10
11 # reload apache2 
12 if [ -x /usr/sbin/invoke-rc.d ]; then
13   [ -x /etc/init.d/apache2 ] && invoke-rc.d apache2 reload
14 else
15   [ -x /etc/init.d/apache2 ] && /etc/init.d/apache2 reload
16 fi
17
18 #DEBHELPER#