Reload apache2 in configure mode (install/upgrade)
[pazpar2-moved-to-github.git] / debian / pazpar2-apache2.postinst
1 #!/bin/sh
2 set -e
3
4 if [ "$1" != "configure" ]; then
5     exit 0
6 fi
7
8 reload_apache()
9 {
10     if apache2ctl configtest 2>/dev/null; then
11         invoke-rc.d apache2 force-reload || true
12     else
13         echo "Your apache2 configuration is broken, so we're not restarting it for you."
14     fi
15 }
16
17 if [ -e /etc/apache2/apache2.conf ]; then
18     if [ ! -f /etc/apache2/mods-enabled/proxy_http.load ]; then
19         a2enmod proxy_http || true
20     fi
21     
22     reload_apache
23 fi
24 exit 0