You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
736 B
Plaintext
26 lines
736 B
Plaintext
16 years ago
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
if [ "$1" = "configure" ]; then
|
||
|
. /usr/share/debconf/confmodule
|
||
|
db_version 2.0
|
||
|
dbc_generate_include='template:/etc/postfixadmin/config.inc.php'
|
||
|
dbc_generate_include_owner='root:www-data'
|
||
|
dbc_generate_include_perms='640'
|
||
|
dbc_generate_include_args="-U -o template_infile=/usr/share/postfixadmin/config.inc.php"
|
||
|
. /usr/share/dbconfig-common/dpkg/postinst
|
||
|
dbc_go postfixadmin $@
|
||
|
db_get postfixadmin/reconfigure-webserver
|
||
|
servers="$RET"
|
||
|
restart="$servers"
|
||
|
linkdestination_apache="../../postfixadmin/apache.conf"
|
||
|
linkdestination_lighttpd="../../postfixadmin/lighttpd.conf"
|
||
|
linkname="postfixadmin"
|
||
|
. /usr/share/wwwconfig-common/confd-link.sh
|
||
|
. /usr/share/wwwconfig-common/restart.sh
|
||
|
fi
|
||
|
|
||
|
#DEBHELPER#
|
||
|
|
||
|
exit 0
|