#!/bin/sh set -e [ "$1" = "configure" ] || exit 0 if [ ! -L /etc/apache2/conf.d/phpbb2-cn.conf -a ! -f /etc/apache2/conf.d/phpbb2-cn.conf ]; then ln -sf /etc/phpbb2/apache.conf /etc/apache2/conf.d/phpbb2-cn.conf restart_apache2="yes" fi echo "CN: phpBB2 is at http://`hostname --fqdn`/phpbb/" 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