config is in liblemonldap-ng-conf-perl 1.1.2-1.
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 22 23 24 25 | #!/bin/sh
set -e
. /usr/share/debconf/confmodule
db_input medium liblemonldap-ng-conf-perl/domain || true
db_input medium liblemonldap-ng-conf-perl/ldapServer || true
db_input medium liblemonldap-ng-conf-perl/ldapPort || true
db_input medium liblemonldap-ng-conf-perl/ldapBase || true
db_input medium liblemonldap-ng-conf-perl/managerDn || true
db_input medium liblemonldap-ng-conf-perl/managerPassword || true
db_input medium liblemonldap-ng-conf-perl/portal || true
testversion=`echo $2|sed -e 's/^0\.9.*$/X/'`
if [ "$testversion" = "X" ];then
db_input high liblemonldap-ng-conf-perl/migrate || true
fi
db_go || true
|