]> err.no Git - sope/blob - debian/libapache2-mod-ngobjweb.postinst
Add missing saxmappings
[sope] / debian / libapache2-mod-ngobjweb.postinst
1 #!/bin/bash
2
3 set -e
4
5 if [ -e /etc/apache2/httpd.conf ]; then
6         a2enmod ngobjweb
7 fi
8 if [ -x /usr/sbin/invoke-rc.d ] && [ -x /etc/init.d/apache2 ]; then
9         invoke-rc.d apache2 force-reload || true
10 elif [ -x /etc/init.d/apache2 ]; then
11         /etc/init.d/apache2 force-reload || true
12 fi
13
14 #DEBHELPER#