Marius Tomaschewski
d059c507b7
and enabled Restart=on-abort (fate#315133). - Update to ISC dhcp-4.2.6 release. See RELNOTES file for the complete list of changes -- digest of fixes not in dhcp-4.2.5: - Tidy up receive packet processing. Thanks to Brad Plank of GTA for reporting the issue and suggesting a possible patch. [ISC-Bugs #34447] - Fix the socket handling for DHCPv6 clients to allow multiple instances of a client on a single machine to work properly. Previously only one client would receive the packets. Thanks to Jiri Popelka at Red Hat for the bug report and a potential patch. [ISC-Bugs #34784] - Added support for gentle shutdown after signal is received. [ISC-Bugs #32692] [ISC-Bugs 34945] - Enhance the DHCPv6 server logging to include the addresses that are assigned to the clients. This can be enabled by defining LOG_V6_ADDRESSES in site.h. [ISC-Bugs #26377] - Fix an operation in the DDNS code to be a bitwise instead of logical or. [ISC-Bugs #35138] - Merged patches for dhcp-4.2.6 version to apply without fuzzy, prepended patch number prefixes to match spec file patch nr, added patch markup tags / bug numbers to the spec file. - Applied contrib-lease-path pach to contrib.tar.gz [- contrib-lease-path.diff] - Changed to require automake and use its config.sub and guess files instead of maintaining a patch. [- config-guess-sub-update.patch] - Enabled to log DHCPv6 addresses assigned by server to clients [+ 0016-server-log-DHCPv6-addresses-assigned-to-clients.patch] - Cleaned up documentation, rpmlint adjustments. OBS-URL: https://build.opensuse.org/package/show/network:dhcp/dhcp?expand=0&rev=121
52 lines
1.9 KiB
Bash
52 lines
1.9 KiB
Bash
#! /bin/bash
|
|
# Copyright (c) 1996, 1997, 1998 S.u.S.E. GmbH
|
|
# Copyright (c) 1998, 1999, 2000, 2001 SuSE GmbH
|
|
# Copyright (c) 2002, 2003 SuSE Linux AG
|
|
# Copyright (c) 2004-2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify it under
|
|
# the terms of the GNU General Public License as published by the Free Software
|
|
# Foundation; either version 2 of the License, or (at your option) any later
|
|
# version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
# details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along with
|
|
# this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
# Place, Suite 330, Boston, MA 02111-1307 USA
|
|
#
|
|
# Author: Rolf Haberrecker <rolf@suse.de>, 1997-1999
|
|
# Peter Poeml <poeml@suse.de>, 2000-2006
|
|
# Marius Tomaschewski <mt@suse.de>, 2006-2010
|
|
#
|
|
# /etc/init.d/dhcp-server
|
|
# and its symbolic link
|
|
# /usr/sbin/rcdhcp-server
|
|
#
|
|
### BEGIN INIT INFO
|
|
# Provides: dhcp-server
|
|
# Required-Start: $remote_fs $network
|
|
# Should-Start: network-remotefs $named $syslog $time ldap ndsd
|
|
# Required-Stop: $remote_fs $network
|
|
# Should-Stop: network-remotefs $named $syslog ldap ndsd
|
|
# Default-Start: 3 5
|
|
# Default-Stop: 0 1 2 6
|
|
# Short-Description: ISC DHCP 4.x Server
|
|
# Description: Start ISC DHCP (Dynamic Host Configuration Protocol)
|
|
# 4.x series server.
|
|
# (Note: if configured for failover it
|
|
# needs to rely on time synchronisation.)
|
|
### END INIT INFO
|
|
|
|
test -x /usr/lib/dhcp/dhcpd || exit 5
|
|
case $1 in
|
|
start|stop|try-restart|restart|force-reload|reload|status|probe|*)
|
|
export SCRIPT=${0##*/}
|
|
exec /usr/lib/dhcp/dhcpd -4 "$@" || exit 1
|
|
;;
|
|
esac
|
|
|