#!/bin/sh set -e #DEBHELPER# if [ "$1" != "remove" -a "$1" != "purge" ]; then exit 0 fi for i in apache apache-ssl apache-perl; do if [ -e /etc/$i/httpd.conf ]; then apache-modconf $i disable mod_php5 quiet fi done exit 0