#!/bin/sh -e if [ -x "/etc/init.d/apache2" ]; then if [ -x /usr/sbin/invoke-rc.d ]; then invoke-rc.d apache2 reload ||true else /etc/init.d/apache2 reload ||true fi fi # Automatically added by dh_installdocs if [ "$1" = configure ] && which install-docs >/dev/null 2>&1; then install-docs -i /usr/share/doc-base/apache2-manual fi # End automatically added section