#!/bin/sh

set -e

case "$1" in
    configure|reconfigure)
    APACHE2_NEED_ACTION=yes
    if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then
       . /usr/share/apache2/apache2-maintscript-helper
       apache2_has_module security2 && apache2_reload reload || true
    fi

esac

#DEBHELPER#
