config is in isc-dhcp-server 4.3.3-5ubuntu12.
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 -e
#
#
# Source debconf library.
. /usr/share/debconf/confmodule
# Read in the current defaults (if available)
INITCONFFILE=/etc/default/isc-dhcp-server
# Read current configuration - the user might not use dpkg-reconfigure
# to change /etc/default/isc-dhcp-server, so we need to do this to
# preserve the configuration.
if [ -r ${INITCONFFILE} ]; then
. ${INITCONFFILE}
db_set isc-dhcp-server/interfaces "${INTERFACES}"
fi
db_title "DHCP Server"
db_input low isc-dhcp-server/interfaces || true
db_go
db_input medium isc-dhcp-server/new_auth_behavior || true
db_go
|