~ubuntu-branches/ubuntu/oneiric/isc-dhcp/oneiric-security

« back to all changes in this revision

Viewing changes to debian/isc-dhcp-server.config

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Pollock
  • Date: 2009-09-02 22:34:25 UTC
  • Revision ID: james.westby@ubuntu.com-20090902223425-e060dofnj2yf8zzf
Tags: 4.1.0-1
* The "throw everything out and start over" release
* New upstream release
* debian/control: drop 3 from the binary package names, adjust dependencies,
  maintainer scripts, accordingly
* use debhelper more extensively, de-cruft debian/rules
* remove dhcp-server preinst
* add debug packages
* add transitional packages
* add debian/README.source
* debian/control: bumped Standards-Version
* debian/isc-dhcp-server.postinst: transfer existing config and lease files
  when upgrading from dhcp3-server
* debian/isc-dhcp-client.postinst: transfer existing config file when
  upgrading from dhcp3-client
* debian/changelog: added marker for legacy malformed changelog entry to
  placate Lintian
* add a patch to correct groff warnings in man pages
* add a patch to ignore checksums on the loopback interface
* debian/control: make isc-dhcp-client depend on ifupdown that invokes
  /sbin/dhclient correctly

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
#
 
3
#
 
4
 
 
5
# Source debconf library.
 
6
. /usr/share/debconf/confmodule
 
7
 
 
8
# Read in the current defaults (if available)
 
9
INITCONFFILE=/etc/default/isc-dhcp-server
 
10
 
 
11
# Read current configuration - the user might not use dpkg-reconfigure
 
12
# to change /etc/default/isc-dhcp-server, so we need to do this to
 
13
# preserve the configuration.
 
14
if [ -r ${INITCONFFILE} ]; then
 
15
        . ${INITCONFFILE}
 
16
        db_set isc-dhcp-server/interfaces "${INTERFACES}"
 
17
fi
 
18
 
 
19
db_title "DHCP Server"
 
20
 
 
21
db_input low isc-dhcp-server/interfaces || true
 
22
db_go
 
23
 
 
24
db_input high isc-dhcp-server/new_auth_behavior || true
 
25
db_go