config is in phpgacl 3.3.7-7.3.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/sh -e
# Source debconf library.
. /usr/share/debconf/confmodule
# source dbconfig-common stuff
dbc_dbtypes="mysql, pgsql"
if [ -f /usr/share/dbconfig-common/dpkg/config ]; then
. /usr/share/dbconfig-common/dpkg/config
dbc_go phpgacl $@
fi
db_input medium phpgacl/apache || true
db_go
OLDCONF=/etc/phpgacl/phpgacl.conf.php
if [ -e "$OLDCONF" ] ; then
db_input high phpgacl/conffile_changed || true
db_go
fi
|