r1: [svn-inject] Installing original source of mailman-cn
[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 # restartat apache
12 if [ -x /etc/init.d/apache2 ]; then
13   /etc/init.d/apache2 reload || true
14 fi