#!/bin/sh set -e [ "$1" = "purge" ] || exit 0 if [ /etc/apache2/conf.d/phpbb2-cn.conf ]; then rm -f /etc/apache2/conf.d/phpbb2-cn.conf restart_apache2="yes" fi if [ "$restart_apache2" = "yes" ]; then if [ -x /usr/sbin/invoke-rc.d ]; then [ -x /etc/init.d/apache2 ] && invoke-rc.d apache2 restart else [ -x /etc/init.d/apache2 ] && /etc/init.d/apache2 restart fi fi