jos izmjena za apache 2.4
[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 a2disconf mailman-cn
12
13 if [ /etc/apache2/conf-available/mailman-cn.conf ]; then
14   rm -f /etc/apache2/conf-available/mailman-cn.conf
15 fi
16
17 # reload apache2 
18 reload apache2 reload
19
20 #DEBHELPER#