18 lines
314 B
Bash
18 lines
314 B
Bash
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
# This code should use dh_apache2 once it is available as build dependency
|
|
|
|
if [ "$1" = "purge" ] ; then
|
|
if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then
|
|
. /usr/share/apache2/apache2-maintscript-helper
|
|
apache2_invoke disconf apache2-doc || true
|
|
|
|
fi
|
|
fi
|
|
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|