mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-28 19:50:29 +00:00
21 lines
520 B
Bash
21 lines
520 B
Bash
#!/bin/sh -e
|
|
# postrm script for linkchecker-web
|
|
#
|
|
# see: dh_installdeb(1)
|
|
|
|
#DEBHELPER#
|
|
|
|
if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then
|
|
CONF="linkchecker"
|
|
|
|
if [ -e /usr/share/apache2/apache2-maintscript-helper ]; then
|
|
# apache 2.4
|
|
. /usr/share/apache2/apache2-maintscript-helper
|
|
apache2_invoke disconf $CONF
|
|
elif dpkg-query -f '${Version}' -W 'apache2.2-common' > /dev/null 2>&1; then
|
|
# apache 2.2
|
|
[ -L /etc/apache2/conf.d/$CONF.conf ] && rm /etc/apache2/conf.d/$CONF.conf
|
|
fi
|
|
fi
|
|
|
|
exit 0
|