Pazpar2 1.4.4-2 for squeeze
[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     if [ -d /etc/apache2/conf.d ]; then
23         ln -sf /etc/pazpar2/ap2pazpar2.cfg /etc/apache2/conf.d/pazpar2
24         
25         if [ -f /etc/apache2/conf.d/ap2pazpar2.cfg ]; then
26             rm /etc/apache2/conf.d/ap2pazpar2.cfg
27         fi
28     fi
29     
30     reload_apache
31 fi
32 exit 0