pkg://apache-perl_1.3.34-4.1_m68k.deb:465794/config
info downloads
#!/bin/bash
set -e
## Source debconf library.
. /usr/share/debconf/confmodule
if [ "$1" = "configure" ]; then
if dpkg --compare-versions "$2" lt "1.3.22-2-1.26-1"; then
db_input high apache-perl/upgrade-from-apache-conflict || true
fi
fi
# A common configuration mistake is to leave "PidFile /var/run/apache.pid"
# in the configuration file. Warn if we see this.
if [ -f /etc/apache-perl/httpd.conf ]; then
if grep 'apache\.pid' /etc/apache-perl/httpd.conf >/dev/null 2>/dev/null; then
db_input high apache-perl/old-pidfile-set || true
fi
fi
if [ -e /etc/apache-perl/apache_not_to_be_run ]; then
db_set apache-perl/init false
fi
if [ -e /etc/default/apache-perl ]; then
. /etc/default/apache-perl
db_set apache-perl/init $start_at_boot
fi
if [ -e /usr/lib/apache-perl/suexec ]; then
db_set apache-perl/enable-suexec true
else
db_set apache-perl/enable-suexec false
fi
db_input low apache-perl/init || true
db_input medium apache-perl/enable-suexec || true
db_go || true