2006-11-09 21:09:46 +00:00
|
|
|
# Use 64-bit pointers on POWER and z/Series
|
|
|
|
%ifarch ppc64 s390x
|
|
|
|
%define bigptrs -DPTRSIZE_64BIT
|
|
|
|
%endif
|
|
|
|
|
2007-03-05 16:02:22 +00:00
|
|
|
# The workdir is used in the build system for ISC dhcp, we set it to this
|
|
|
|
# value to avoid any problems guessing what it might be during installation.
|
2006-11-09 21:09:46 +00:00
|
|
|
%define workdir work.linux-2.2
|
|
|
|
|
2007-02-08 15:51:30 +00:00
|
|
|
Summary: DHCP (Dynamic Host Configuration Protocol) server and relay agent
|
2005-01-07 00:05:31 +00:00
|
|
|
Name: dhcp
|
2006-11-07 15:49:44 +00:00
|
|
|
Version: 3.0.5
|
2007-03-05 16:02:22 +00:00
|
|
|
Release: 24%{?dist}
|
2006-08-21 12:16:35 +00:00
|
|
|
Epoch: 12
|
2007-02-27 16:50:17 +00:00
|
|
|
License: ISC
|
2006-08-17 21:22:10 +00:00
|
|
|
Group: System Environment/Daemons
|
2006-10-14 16:02:20 +00:00
|
|
|
URL: http://isc.org/products/DHCP/
|
2004-09-09 04:10:47 +00:00
|
|
|
Source0: ftp://ftp.isc.org/isc/dhcp/dhcp-%{version}.tar.gz
|
|
|
|
Source1: dhcpd.conf.sample
|
|
|
|
Source2: dhcpd.init
|
2004-09-09 04:11:53 +00:00
|
|
|
Source3: dhcrelay.init
|
2005-07-30 00:58:55 +00:00
|
|
|
Source4: dhcpd.conf
|
2006-10-27 22:10:38 +00:00
|
|
|
Source5: libdhcp4client.pc
|
2007-03-05 16:02:22 +00:00
|
|
|
Source6: README.ldap
|
|
|
|
Source7: draft-ietf-dhc-ldap-schema-01.txt
|
|
|
|
Source8: dhcpd-conf-to-ldap.pl
|
|
|
|
Source9: linux.dbus-example
|
2006-08-17 21:22:10 +00:00
|
|
|
|
2006-11-10 17:02:31 +00:00
|
|
|
Patch0: dhcp-3.0.5-extended-new-option-info.patch
|
|
|
|
Patch1: dhcp-3.0.5-Makefile.patch
|
|
|
|
Patch2: dhcp-3.0.5-version.patch
|
|
|
|
Patch3: dhcp-3.0.5-client.patch
|
|
|
|
Patch4: dhcp-3.0.5-common.patch
|
|
|
|
Patch5: dhcp-3.0.5-dhcpctl.patch
|
|
|
|
Patch6: dhcp-3.0.5-dst.patch
|
|
|
|
Patch7: dhcp-3.0.5-includes.patch
|
|
|
|
Patch8: dhcp-3.0.5-omapip.patch
|
|
|
|
Patch9: dhcp-3.0.5-minires.patch
|
|
|
|
Patch10: dhcp-3.0.5-server.patch
|
2007-01-29 22:19:06 +00:00
|
|
|
Patch11: dhcp-3.0.5-timeouts.patch
|
|
|
|
Patch12: dhcp-3.0.5-fix-warnings.patch
|
2007-01-30 18:37:21 +00:00
|
|
|
Patch13: dhcp-3.0.5-xen-checksum.patch
|
2007-02-01 18:57:30 +00:00
|
|
|
Patch14: dhcp-3.0.5-ldap-configuration.patch
|
2007-03-05 16:02:22 +00:00
|
|
|
Patch15: dhcp-3.0.5-no-win32.patch
|
2007-01-29 22:19:06 +00:00
|
|
|
|
|
|
|
# adds libdhcp4client to the ISC code base
|
|
|
|
Patch50: dhcp-3.0.5-libdhcp4client.patch
|
2006-06-22 18:17:27 +00:00
|
|
|
|
2007-02-08 15:51:30 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2007-03-05 16:02:22 +00:00
|
|
|
Requires: perl
|
2006-06-28 12:19:52 +00:00
|
|
|
Requires(post): chkconfig, coreutils
|
|
|
|
Requires(preun): chkconfig
|
|
|
|
Requires(postun): coreutils
|
2007-02-28 11:36:49 +00:00
|
|
|
BuildRequires: groff openldap-devel
|
2004-09-09 04:10:47 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
DHCP (Dynamic Host Configuration Protocol) is a protocol which allows
|
|
|
|
individual devices on an IP network to get their own network
|
|
|
|
configuration information (IP address, subnetmask, broadcast address,
|
2004-09-09 04:11:23 +00:00
|
|
|
etc.) from a DHCP server. The overall purpose of DHCP is to make it
|
2004-09-09 04:11:53 +00:00
|
|
|
easier to administer a large network. The dhcp package includes the
|
|
|
|
ISC DHCP service and relay agent.
|
2004-09-09 04:10:47 +00:00
|
|
|
|
2004-09-09 04:11:53 +00:00
|
|
|
To use DHCP on your network, install a DHCP service (or relay agent),
|
|
|
|
and on clients run a DHCP client daemon. The dhcp package provides
|
|
|
|
the ISC DHCP service and relay agent.
|
|
|
|
|
|
|
|
%package -n dhclient
|
2005-04-05 00:45:46 +00:00
|
|
|
Summary: Provides the dhclient ISC DHCP client daemon and dhclient-script .
|
2004-09-09 04:11:53 +00:00
|
|
|
Requires: initscripts >= 6.75
|
|
|
|
Group: System Environment/Base
|
2007-02-17 23:08:12 +00:00
|
|
|
Obsoletes: dhcpcd <= 1.3.22
|
2004-09-09 04:11:53 +00:00
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development headers and libraries for interfacing to the DHCP server
|
2007-02-28 11:36:49 +00:00
|
|
|
Requires: dhcp = %{epoch}:%{version}-%{release}, openldap-devel
|
2004-09-09 04:11:53 +00:00
|
|
|
Group: Development/Libraries
|
|
|
|
|
|
|
|
%description -n dhclient
|
|
|
|
DHCP (Dynamic Host Configuration Protocol) is a protocol which allows
|
|
|
|
individual devices on an IP network to get their own network
|
|
|
|
configuration information (IP address, subnetmask, broadcast address,
|
|
|
|
etc.) from a DHCP server. The overall purpose of DHCP is to make it
|
|
|
|
easier to administer a large network.
|
|
|
|
|
|
|
|
To use DHCP on your network, install a DHCP service (or relay agent),
|
2006-06-28 12:19:52 +00:00
|
|
|
and on clients run a DHCP client daemon. The dhclient package
|
2004-09-09 04:11:53 +00:00
|
|
|
provides the ISC DHCP client daemon.
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
Libraries for interfacing with the ISC DHCP server.
|
2004-09-09 04:10:47 +00:00
|
|
|
|
2006-08-17 21:22:10 +00:00
|
|
|
%package -n libdhcp4client
|
2006-11-09 21:09:46 +00:00
|
|
|
Summary: ISC DHCP IPv4 client in a library for invocation from other programs
|
2006-08-17 21:22:10 +00:00
|
|
|
Group: Development/Libraries
|
2006-05-15 14:49:20 +00:00
|
|
|
|
|
|
|
%description -n libdhcp4client
|
2006-08-17 21:22:10 +00:00
|
|
|
The Internet Software Consortium (ISC) Dynamic Host Configuration Protocol
|
|
|
|
(DHCP) Internet Protocol version 4 (IPv4) client software in a library
|
|
|
|
suitable for linkage with and invocation by other programs.
|
2006-05-15 14:49:20 +00:00
|
|
|
|
2006-08-17 21:22:10 +00:00
|
|
|
%package -n libdhcp4client-devel
|
2006-05-15 14:49:20 +00:00
|
|
|
Summary: Header files for development with the ISC DHCP IPv4 client library
|
2006-08-17 21:22:10 +00:00
|
|
|
Group: Development/Libraries
|
2007-02-28 11:36:49 +00:00
|
|
|
Requires: openldap-devel pkgconfig
|
2006-05-15 14:49:20 +00:00
|
|
|
|
|
|
|
%description -n libdhcp4client-devel
|
2006-06-28 12:19:52 +00:00
|
|
|
Header files for development with the Internet Software Consortium (ISC)
|
|
|
|
Dynamic Host Configuration Protocol (DHCP) Internet Protocol version 4 (IPv4)
|
2006-05-15 14:49:20 +00:00
|
|
|
client library .
|
|
|
|
|
2004-09-09 04:10:47 +00:00
|
|
|
%prep
|
|
|
|
%setup -q
|
2006-11-14 03:48:34 +00:00
|
|
|
|
|
|
|
# Extended new option info patch. Adds the -x option to dhclient, which is
|
|
|
|
# needed for dhcdbd and NetworkManager
|
2006-11-10 17:02:31 +00:00
|
|
|
%patch0 -p1 -b .enoi
|
2006-11-14 03:48:34 +00:00
|
|
|
|
|
|
|
# Build fixes
|
2006-11-10 17:02:31 +00:00
|
|
|
%patch1 -p1 -b .Makefile
|
2006-11-14 03:48:34 +00:00
|
|
|
|
|
|
|
# Add -RedHat to the version number
|
2006-11-10 17:02:31 +00:00
|
|
|
%patch2 -p1 -b .version
|
2006-11-14 03:48:34 +00:00
|
|
|
|
|
|
|
# Patches for the client/ subdirectory
|
2006-11-10 17:02:31 +00:00
|
|
|
%patch3 -p1 -b .client
|
2006-11-14 03:48:34 +00:00
|
|
|
|
|
|
|
# Patches for the common/ subdirectory
|
2006-11-10 17:02:31 +00:00
|
|
|
%patch4 -p1 -b .common
|
2006-11-14 03:48:34 +00:00
|
|
|
|
|
|
|
# Patches for the dhcpctl/ subdirectory
|
2006-11-10 17:02:31 +00:00
|
|
|
%patch5 -p1 -b .dhcpctl
|
2006-11-14 03:48:34 +00:00
|
|
|
|
|
|
|
# Patches for the dst/ subdirectory
|
2006-11-10 17:02:31 +00:00
|
|
|
%patch6 -p1 -b .dst
|
2006-11-14 03:48:34 +00:00
|
|
|
|
|
|
|
# Patches for the includes/ subdirectory
|
2006-11-10 17:02:31 +00:00
|
|
|
%patch7 -p1 -b .includes
|
2006-11-14 03:48:34 +00:00
|
|
|
|
|
|
|
# Patches for the omapip/ subdirectory
|
2006-11-10 17:02:31 +00:00
|
|
|
%patch8 -p1 -b .omapip
|
2006-11-14 03:48:34 +00:00
|
|
|
|
|
|
|
# Patches for the minires/ subdirectory
|
2006-11-10 17:02:31 +00:00
|
|
|
%patch9 -p1 -b .minires
|
2006-11-14 03:48:34 +00:00
|
|
|
|
|
|
|
# Patches for the server/ subdirectory
|
2006-11-10 17:02:31 +00:00
|
|
|
%patch10 -p1 -b .server
|
2006-11-14 03:48:34 +00:00
|
|
|
|
|
|
|
# Fix up timeout handling in dhclient and libdhcp4client
|
2007-01-29 22:19:06 +00:00
|
|
|
%patch11 -p1 -b .timeouts
|
2006-11-14 03:48:34 +00:00
|
|
|
|
|
|
|
# Fix up anything that fails -Wall -Werror
|
2007-01-29 22:19:06 +00:00
|
|
|
%patch12 -p1 -b .warnings
|
|
|
|
|
2007-01-30 18:37:21 +00:00
|
|
|
# Fix Xen host networking problems (partial checksums)
|
2007-02-04 19:34:53 +00:00
|
|
|
#%patch13 -p1 -b .xen
|
2007-01-30 18:37:21 +00:00
|
|
|
|
2007-02-01 18:57:30 +00:00
|
|
|
# Add support for dhcpd.conf data in LDAP
|
|
|
|
%patch14 -p1 -b .ldapconf
|
|
|
|
|
2007-03-05 16:02:22 +00:00
|
|
|
# The contrib/ms2isc/Registry.pm file requires Win32API::Registry, which is
|
|
|
|
# not part of Fedora by default. We comment out this use line in the script
|
|
|
|
# so that RPM doesn't automatically add perl(Win32API::Registry) dependency.
|
|
|
|
# The patch puts a comment in the script telling the user which perl module
|
|
|
|
# should be installed to use the Registry.pm contrib file.
|
|
|
|
%patch15 -p1 -b .no-win32
|
|
|
|
|
2007-01-29 22:19:06 +00:00
|
|
|
# Add the libdhcp4client target (library version of dhclient)
|
|
|
|
%patch50 -p1 -b .libdhcp4client
|
2006-06-22 18:17:27 +00:00
|
|
|
|
2007-03-05 16:02:22 +00:00
|
|
|
# Copy in documentation and example scripts for LDAP patch to dhcpd
|
|
|
|
%{__cp} -p %SOURCE6 .
|
|
|
|
%{__cp} -p %SOURCE7 doc
|
|
|
|
%{__cp} -p %SOURCE8 contrib
|
|
|
|
|
|
|
|
# Copy in example dhclient script for use with D-BUS (requires extended
|
|
|
|
# new option info patch too)
|
|
|
|
%{__cp} -p %SOURCE9 client/scripts
|
|
|
|
|
2006-11-09 21:09:46 +00:00
|
|
|
%build
|
2007-03-05 16:02:22 +00:00
|
|
|
%{__cp} %SOURCE1 .
|
|
|
|
%{__cat} <<EOF > site.conf
|
2005-09-23 21:15:43 +00:00
|
|
|
VARDB=%{_localstatedir}/lib/dhcpd
|
2004-09-09 04:11:53 +00:00
|
|
|
ADMMANDIR=%{_mandir}/man8
|
|
|
|
FFMANDIR=%{_mandir}/man5
|
|
|
|
LIBMANDIR=%{_mandir}/man3
|
|
|
|
USRMANDIR=%{_mandir}/man1
|
|
|
|
LIBDIR=%{_libdir}
|
|
|
|
INCDIR=%{_includedir}
|
|
|
|
EOF
|
2007-03-05 16:02:22 +00:00
|
|
|
%{__cat} <<EOF >> includes/site.h
|
2006-10-27 22:10:38 +00:00
|
|
|
#define _PATH_DHCPD_DB "%{_localstatedir}/lib/dhcpd/dhcpd.leases"
|
|
|
|
#define _PATH_DHCLIENT_DB "%{_localstatedir}/lib/dhclient/dhclient.leases"
|
2004-09-09 04:11:53 +00:00
|
|
|
EOF
|
2004-09-09 04:12:03 +00:00
|
|
|
|
2007-03-05 16:02:22 +00:00
|
|
|
# Enable extended option info patch (-DEXTENDED_NEW_OPTION_INFO)
|
|
|
|
# Use -fvisibility=hidden for libdhcp4client. The way that library is
|
|
|
|
# constructed, we need to follow the hide-by-default/expose-what-we-need
|
|
|
|
# plan for the library API.
|
2007-02-28 11:36:49 +00:00
|
|
|
COPTS="-fPIC -Werror -Dlint -DEXTENDED_NEW_OPTION_INFO -fvisibility=hidden"
|
2007-02-09 02:40:12 +00:00
|
|
|
|
2006-11-09 21:09:46 +00:00
|
|
|
# DO NOT use the %%configure macro because this configure script is not autognu
|
|
|
|
CC="%{__cc}" ./configure \
|
2007-02-28 11:36:49 +00:00
|
|
|
--copts "$RPM_OPT_FLAGS $COPTS %{?bigptrs}" \
|
2006-11-09 21:09:46 +00:00
|
|
|
--work-dir %{workdir}
|
2006-10-27 22:10:38 +00:00
|
|
|
|
2007-03-05 16:02:22 +00:00
|
|
|
%{__sed} 's/@DHCP_VERSION@/'%{version}'/' < %SOURCE5 > libdhcp4client.pc
|
2006-11-09 21:09:46 +00:00
|
|
|
%{__make} %{?_smp_mflags} CC="%{__cc}"
|
2004-09-09 04:10:47 +00:00
|
|
|
|
|
|
|
%install
|
2007-03-05 16:02:22 +00:00
|
|
|
%{__rm} -rf %{buildroot}
|
|
|
|
%{__mkdir} -p %{buildroot}%{_sysconfdir}/sysconfig
|
2004-09-09 04:10:47 +00:00
|
|
|
|
2007-03-05 16:02:22 +00:00
|
|
|
%{__make} install DESTDIR=%{buildroot}
|
2004-09-09 04:10:47 +00:00
|
|
|
|
2007-03-05 16:02:22 +00:00
|
|
|
%{__install} -p -m 0755 contrib/dhcpd-conf-to-ldap.pl %{buildroot}/usr/bin/dhcpd-conf-to-ldap
|
2007-02-01 18:57:30 +00:00
|
|
|
|
2007-03-05 16:02:22 +00:00
|
|
|
%{__mkdir} -p %{buildroot}%{_initrddir}
|
|
|
|
%{__install} -p -m 0755 %SOURCE2 %{buildroot}%{_initrddir}/dhcpd
|
2004-09-09 04:10:47 +00:00
|
|
|
|
2007-02-28 11:36:49 +00:00
|
|
|
touch %{buildroot}%{_localstatedir}/lib/dhcpd/dhcpd.leases
|
2007-03-05 16:02:22 +00:00
|
|
|
%{__mkdir} -p %{buildroot}%{_localstatedir}/lib/dhclient/
|
|
|
|
%{__cat} <<EOF > %{buildroot}%{_sysconfdir}/sysconfig/dhcpd
|
2004-09-09 04:11:03 +00:00
|
|
|
# Command line options here
|
|
|
|
DHCPDARGS=
|
|
|
|
EOF
|
|
|
|
|
2007-03-05 16:02:22 +00:00
|
|
|
%{__install} -p -m 0755 %SOURCE3 %{buildroot}%{_initrddir}/dhcrelay
|
2004-09-09 04:11:53 +00:00
|
|
|
|
2007-03-05 16:02:22 +00:00
|
|
|
%{__cat} <<EOF > %{buildroot}%{_sysconfdir}/sysconfig/dhcrelay
|
2004-09-09 04:11:53 +00:00
|
|
|
# Command line options here
|
|
|
|
INTERFACES=""
|
|
|
|
DHCPSERVERS=""
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# Copy sample dhclient.conf file into position
|
2007-03-05 16:02:22 +00:00
|
|
|
%{__cp} -p client/dhclient.conf dhclient.conf.sample
|
|
|
|
%{__chmod} 0755 %{buildroot}/sbin/dhclient-script
|
2006-10-27 22:10:38 +00:00
|
|
|
|
|
|
|
# Install default (empty) dhcpd.conf:
|
2007-03-05 16:02:22 +00:00
|
|
|
%{__cp} -fp %SOURCE4 %{buildroot}%{_sysconfdir}
|
2006-11-09 21:09:46 +00:00
|
|
|
|
2007-03-05 16:02:22 +00:00
|
|
|
%{__install} -p -m 0644 -D libdhcp4client.pc %{buildroot}%{_libdir}/pkgconfig/libdhcp4client.pc
|
2006-11-09 21:09:46 +00:00
|
|
|
|
|
|
|
# Sources files can't be symlinks for debuginfo package generation
|
|
|
|
find %{workdir} -type l |
|
|
|
|
while read f; do
|
2007-03-05 16:02:22 +00:00
|
|
|
%{__rm} -f linkderef
|
|
|
|
%{__cp} $f linkderef
|
|
|
|
%{__rm} -f $f
|
|
|
|
%{__mv} linkderef $f
|
2006-05-15 14:49:20 +00:00
|
|
|
done
|
2004-09-09 04:11:53 +00:00
|
|
|
|
2004-09-09 04:10:47 +00:00
|
|
|
%clean
|
2007-03-05 16:02:22 +00:00
|
|
|
%{__rm} -rf %{buildroot}
|
2004-09-09 04:10:47 +00:00
|
|
|
|
|
|
|
%post
|
|
|
|
/sbin/chkconfig --add dhcpd
|
2004-09-09 04:11:53 +00:00
|
|
|
/sbin/chkconfig --add dhcrelay
|
2006-06-28 12:19:52 +00:00
|
|
|
exit 0
|
2004-09-09 04:10:47 +00:00
|
|
|
|
|
|
|
%preun
|
|
|
|
if [ $1 = 0 ]; then # execute this only if we are NOT doing an upgrade
|
|
|
|
service dhcpd stop >/dev/null 2>&1
|
2004-09-09 04:11:53 +00:00
|
|
|
service dhcrelay stop >/dev/null 2>&1
|
2006-06-28 12:19:52 +00:00
|
|
|
/sbin/chkconfig --del dhcpd
|
2004-09-09 04:11:53 +00:00
|
|
|
/sbin/chkconfig --del dhcrelay
|
2004-09-09 04:10:47 +00:00
|
|
|
fi
|
2006-06-28 12:19:52 +00:00
|
|
|
exit 0
|
2004-09-09 04:10:47 +00:00
|
|
|
|
|
|
|
%postun
|
|
|
|
if [ "$1" -ge "1" ]; then
|
|
|
|
service dhcpd condrestart >/dev/null 2>&1
|
2004-09-09 04:11:53 +00:00
|
|
|
service dhcrelay condrestart >/dev/null 2>&1
|
2006-06-08 18:24:16 +00:00
|
|
|
fi
|
2006-06-28 12:19:52 +00:00
|
|
|
exit 0
|
2006-06-08 18:24:16 +00:00
|
|
|
|
2006-05-19 20:48:46 +00:00
|
|
|
%post -n libdhcp4client -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -n libdhcp4client -p /sbin/ldconfig
|
|
|
|
|
2004-09-09 04:10:47 +00:00
|
|
|
%files
|
2007-02-28 11:36:49 +00:00
|
|
|
%defattr(-,root,root,-)
|
2007-02-01 18:57:30 +00:00
|
|
|
%doc README README.ldap RELNOTES dhcpd.conf.sample doc/IANA-arp-parameters
|
2007-03-05 16:02:22 +00:00
|
|
|
%doc doc/IANA-arp-parameters doc/api+protocol doc/*.txt contrib
|
2005-09-23 21:15:43 +00:00
|
|
|
%dir %{_localstatedir}/lib/dhcpd
|
|
|
|
%verify(not size md5 mtime) %config(noreplace) %{_localstatedir}/lib/dhcpd/dhcpd.leases
|
2007-03-05 16:02:22 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/dhcpd
|
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/dhcrelay
|
|
|
|
%config(noreplace) %{_sysconfdir}/dhcpd.conf
|
|
|
|
%{_initrddir}/dhcpd
|
|
|
|
%{_initrddir}/dhcrelay
|
2004-09-09 04:11:53 +00:00
|
|
|
%{_bindir}/omshell
|
2007-02-01 18:57:30 +00:00
|
|
|
%{_bindir}/dhcpd-conf-to-ldap
|
2004-09-09 04:10:47 +00:00
|
|
|
%{_sbindir}/dhcpd
|
|
|
|
%{_sbindir}/dhcrelay
|
2007-03-05 16:02:22 +00:00
|
|
|
%{_mandir}/man1/omshell.1.gz
|
|
|
|
%{_mandir}/man5/dhcpd.conf.5.gz
|
|
|
|
%{_mandir}/man5/dhcpd.leases.5.gz
|
|
|
|
%{_mandir}/man8/dhcpd.8.gz
|
|
|
|
%{_mandir}/man8/dhcrelay.8.gz
|
|
|
|
%{_mandir}/man5/dhcp-options.5.gz
|
|
|
|
%{_mandir}/man5/dhcp-eval.5.gz
|
2004-09-09 04:10:47 +00:00
|
|
|
|
2004-09-09 04:11:53 +00:00
|
|
|
%files -n dhclient
|
2007-02-28 11:36:49 +00:00
|
|
|
%defattr(-,root,root,-)
|
2004-09-09 04:11:53 +00:00
|
|
|
%doc dhclient.conf.sample
|
2005-09-23 21:15:43 +00:00
|
|
|
%dir %{_localstatedir}/lib/dhclient
|
2004-09-09 04:11:53 +00:00
|
|
|
/sbin/dhclient
|
|
|
|
/sbin/dhclient-script
|
2007-03-05 16:02:22 +00:00
|
|
|
%{_mandir}/man5/dhclient.conf.5.gz
|
|
|
|
%{_mandir}/man5/dhclient.leases.5.gz
|
|
|
|
%{_mandir}/man8/dhclient.8.gz
|
|
|
|
%{_mandir}/man8/dhclient-script.8.gz
|
|
|
|
%{_mandir}/man5/dhcp-options.5.gz
|
|
|
|
%{_mandir}/man5/dhcp-eval.5.gz
|
2004-09-09 04:11:53 +00:00
|
|
|
|
|
|
|
%files devel
|
2007-02-28 11:36:49 +00:00
|
|
|
%defattr(-,root,root,-)
|
2006-05-15 14:49:20 +00:00
|
|
|
%exclude %{_libdir}/libdhcp4client*
|
|
|
|
%exclude %{_includedir}/dhcp4client
|
2004-09-09 04:11:53 +00:00
|
|
|
%{_includedir}/*
|
|
|
|
%{_libdir}/*.a
|
|
|
|
%{_mandir}/man3/*
|
2004-09-09 04:10:47 +00:00
|
|
|
|
2006-05-15 14:49:20 +00:00
|
|
|
%files -n libdhcp4client
|
2006-11-16 20:31:12 +00:00
|
|
|
%defattr(0755,root,root,0755)
|
2007-01-29 22:19:06 +00:00
|
|
|
%{_libdir}/libdhcp4client-%{version}.so.*
|
2006-05-15 14:49:20 +00:00
|
|
|
|
|
|
|
%files -n libdhcp4client-devel
|
|
|
|
%defattr(0644,root,root,0755)
|
|
|
|
%{_includedir}/dhcp4client*
|
2006-05-19 20:48:46 +00:00
|
|
|
%{_libdir}/pkgconfig/libdhcp4client.pc
|
2006-05-19 15:06:49 +00:00
|
|
|
%{_libdir}/libdhcp4client.a
|
|
|
|
%{_libdir}/libdhcp4client.so
|
2006-05-15 14:49:20 +00:00
|
|
|
|
2004-09-09 04:10:47 +00:00
|
|
|
%changelog
|
2007-03-05 16:02:22 +00:00
|
|
|
* Thu Mar 01 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-24
|
|
|
|
- Include contrib/ subdirectory in /usr/share/doc (#230476)
|
|
|
|
- Added back Requires for perl since dhcpd-conf-to-ldap needs it (#225691)
|
|
|
|
- Put copies of dhcp-options and dhcp-eval man pages in the dhcp and
|
|
|
|
dhclient packages rather than having the elaborate symlink collection
|
|
|
|
- Explicitly name man pages in the %%files listings
|
|
|
|
- Use the %%{_sysconfdir} and %%{_initrddir} macros (#225691)
|
|
|
|
- Use macros for commands in %%build and %%install
|
|
|
|
- Split README.ldap, draft-ietf-dhc-ldap-schema-01.txt, and
|
|
|
|
dhcpd-conf-to-ldap.pl out of the LDAP patch
|
|
|
|
- Split linux.dbus-example script out of the extended new option info patch
|
|
|
|
- Remove unnecessary changes from the Makefile patch
|
|
|
|
|
2007-02-28 11:36:49 +00:00
|
|
|
* Wed Feb 28 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-23
|
|
|
|
- Update Xen partial checksums patch
|
|
|
|
- Remove perl Requires (#225691)
|
|
|
|
- Make dhcp-devel depend on dhcp = e:v-r (#225691)
|
|
|
|
- libdhcp4client-devel Requires pkgconfig (#225691)
|
|
|
|
- Do not add to RPM_OPT_FLAGS, use COPTS variable instead (#225691)
|
|
|
|
- Use %%{buildroot} macro instead of RPM_BUILD_ROOT variable (#225691)
|
|
|
|
- Preserve timestamps on all installed data files (#225691)
|
|
|
|
- Remove dhcp-options.5.gz and dhcp-eval.5.gz symlinking in post (#225691)
|
|
|
|
- Use %%defattr(-,root,root,-) (#225691)
|
|
|
|
- Do not flag init scripts as %%config in %%files section (#225691)
|
|
|
|
|
2007-02-27 16:50:17 +00:00
|
|
|
* Tue Feb 27 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-22
|
|
|
|
- Change license field to say ISC
|
|
|
|
|
2007-02-17 23:08:12 +00:00
|
|
|
* Sat Feb 17 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-21
|
|
|
|
- Obsoletes dhcpcd <= 1.3.22 (#225691)
|
|
|
|
|
2007-02-17 04:31:07 +00:00
|
|
|
* Fri Feb 16 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-20
|
|
|
|
- Review cleanups (#225691)
|
|
|
|
|
2007-02-09 18:57:19 +00:00
|
|
|
* Fri Feb 09 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-19
|
|
|
|
- Require openldap-devel on dhcp-devel and libdhcp4client-devel packages
|
|
|
|
|
2007-02-09 02:40:12 +00:00
|
|
|
* Thu Feb 08 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-18
|
|
|
|
- Fix libdhcp4client visibility _again_ (#198496)
|
|
|
|
|
2007-02-08 15:51:30 +00:00
|
|
|
* Thu Feb 08 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-17
|
|
|
|
- Remove period from summary line (package review)
|
|
|
|
- Use preferred BuildRoot (package review)
|
|
|
|
|
2007-02-04 19:34:53 +00:00
|
|
|
* Sun Feb 04 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-16
|
|
|
|
- Disable xen-checksums patch for now as it breaks dhclient (#227266)
|
|
|
|
- Updated fix-warnings patch
|
|
|
|
|
2007-02-04 18:51:19 +00:00
|
|
|
* Sun Feb 04 2007 David Woodhouse <dwmw2@redhat.com> - 12:3.0.5-15
|
|
|
|
- Fix broken file reading due to LDAP patch
|
|
|
|
|
2007-02-02 20:41:01 +00:00
|
|
|
* Fri Feb 02 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-14
|
|
|
|
- Only export the symbols we want in libdhcp4client (#198496)
|
|
|
|
|
2007-02-01 18:57:30 +00:00
|
|
|
* Wed Jan 31 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-13
|
|
|
|
- Add support for dhcpd(8) to read dhcpd.conf from an LDAP server (#224352)
|
|
|
|
- Remove invalid ja_JP.eucJP man pages from /usr/share/doc
|
|
|
|
|
2007-01-31 22:35:20 +00:00
|
|
|
* Wed Jan 31 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-12
|
|
|
|
- Rebuild
|
|
|
|
|
2007-01-30 22:51:33 +00:00
|
|
|
* Tue Jan 30 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-11
|
|
|
|
- Remove FORTIFY_SOURCE=0 leftovers from testing last week (whoops)
|
|
|
|
|
2007-01-30 18:37:21 +00:00
|
|
|
* Tue Jan 30 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-10
|
|
|
|
- Fix Xen networking problems with partial checksums (#221964)
|
|
|
|
|
2007-01-29 22:19:06 +00:00
|
|
|
* Mon Jan 29 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-9
|
|
|
|
- Remove dhcptables.pl from the source package
|
|
|
|
- Mark libres.a symbols hidden (#198496)
|
|
|
|
- Set DT_SONAME on libdhcp4client to libdhcp4client-VERSION.so.0
|
|
|
|
- Make function definition for dst_hmac_md5_init() match the prototype
|
|
|
|
|
2006-11-29 15:55:39 +00:00
|
|
|
* Wed Nov 29 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-8
|
|
|
|
- Roll md5 patch in to libdhcp4client patch since it's related
|
|
|
|
- Do not overwrite /etc/ntp/step-tickers (#217663)
|
|
|
|
- Resolves: rhbz#217663
|
|
|
|
|
2006-11-22 20:28:24 +00:00
|
|
|
* Wed Nov 22 2006 Peter Jones <pjones@redhat.com> - 12:3.0.5-7
|
|
|
|
- Build the MD5 functions we link against.
|
|
|
|
|
2006-11-16 20:31:12 +00:00
|
|
|
* Thu Nov 16 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-6
|
|
|
|
- Set permission of libdhcp4client.so.1 to 0755 (#215910)
|
|
|
|
|
2006-11-14 21:04:46 +00:00
|
|
|
* Tue Nov 14 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-5
|
|
|
|
- Do not link res_query.o in to libdhcp4client (#215501)
|
|
|
|
|
2006-11-14 03:48:34 +00:00
|
|
|
* Mon Nov 13 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-4
|
|
|
|
- Enable relinquish_timeouts() and cancel_all_timeouts() even when
|
|
|
|
DEBUG_MEMORY_LEAKAGE_ON_EXIT is not defined
|
|
|
|
- Add prototypes for b64_pton() and b64_ntop in dst/
|
|
|
|
- Move variable declarations and labels around in the fix-warnings patch
|
|
|
|
- Expand the list of objects needed for libdhcp4client (#215328)
|
|
|
|
- Use libres.a in libdhcp4client since it gives correct minires objects
|
|
|
|
- Remove the dhcp options table in C, Perl, Python, and text format (these
|
|
|
|
were reference files added to /usr/share/doc)
|
|
|
|
|
2006-11-13 18:04:31 +00:00
|
|
|
* Mon Nov 13 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-3
|
|
|
|
- Remove struct universe *universe from envadd_state in the client patch
|
|
|
|
- Add struct universe *universe to envadd_state in the enoi patch
|
|
|
|
- Add example dbusified dhclient-script in the enoi patch
|
|
|
|
|
2006-11-10 17:02:31 +00:00
|
|
|
* Fri Nov 10 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-2
|
2006-11-09 21:09:46 +00:00
|
|
|
- Change the way libdhcp4client is compiled (patch main source, create new
|
|
|
|
Makefile rather than copy and patch code after main patches)
|
|
|
|
- Fix up problems generating compiler warnings
|
|
|
|
- Use 'gcc' for making dependencies
|
2006-11-10 17:02:31 +00:00
|
|
|
- Pass -fPIC instead of -fpie/-fPIE in compiler flags
|
|
|
|
- Combine the extended new option info changes in to one patch file (makes
|
|
|
|
it easier for outside projects that want to use dhcdbd and NetworkManager)
|
2006-11-09 21:09:46 +00:00
|
|
|
|
2006-11-07 15:49:44 +00:00
|
|
|
* Tue Nov 07 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-1
|
|
|
|
- Upgrade to ISC dhcp-3.0.5
|
|
|
|
|
2006-10-27 22:10:38 +00:00
|
|
|
* Fri Oct 27 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.4-24
|
|
|
|
- Put typedef for dhcp_state_e before it's used in libdhcp_control.h (#212612)
|
|
|
|
- Remove dhcpctl.3 from minires/Makefile.dist because it's in dhcpctl
|
|
|
|
- Remove findptrsize.c and just set compiler flag for ppc64 and s390x
|
|
|
|
|
2006-10-14 16:02:20 +00:00
|
|
|
* Sat Oct 14 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.4-23
|
|
|
|
- Remove NODEBUGINFO junk from the spec file as well as old/unused code
|
|
|
|
- Rolled all 68 patches in to one patch since more than half of them get
|
|
|
|
overridden by later patches anyway.
|
|
|
|
|
2006-10-13 18:34:52 +00:00
|
|
|
* Fri Oct 13 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.4-22
|
|
|
|
- Send usage() screen in dhclient to stdout rather than the syslog (#210524)
|
|
|
|
|
2006-09-11 15:19:54 +00:00
|
|
|
* Mon Sep 11 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.4-21
|
|
|
|
- Rebuild (#205505)
|
|
|
|
|
2006-08-18 20:12:01 +00:00
|
|
|
* Fri Aug 18 2006 Jesse Keating <jkeating@redhat.com> - 12:3.0.4-20
|
|
|
|
- rebuilt with latest binutils to pick up 64K -z commonpagesize on ppc*
|
|
|
|
(#203001)
|
|
|
|
|
2006-08-17 21:42:39 +00:00
|
|
|
* Thu Aug 17 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.4-19
|
|
|
|
- Fix mkdir problem in libdhcp4client.Makefile
|
|
|
|
|
2006-08-17 21:22:10 +00:00
|
|
|
* Thu Aug 17 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.4-18
|
|
|
|
- Fix dhclient on s390x platform (#202911)
|
|
|
|
|
2006-07-12 05:37:07 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 12:3.0.4-17.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-06-28 19:36:42 +00:00
|
|
|
* Wed Jun 28 2006 Peter Jones <pjones@redhat.com> - 12:3.0.4-17
|
|
|
|
- export timeout cancellation functions in libdhcp4client
|
|
|
|
|
|
|
|
* Wed Jun 28 2006 Florian La Roche <laroche@redhat.com> - 12:3.0.4-16
|
2006-06-28 12:19:52 +00:00
|
|
|
- add proper coreutils requires for the scripts
|
|
|
|
|
2006-06-22 18:17:27 +00:00
|
|
|
* Thu Jun 22 2006 Peter Jones <pjones@redhat.com> - 12:3.0.4-15
|
|
|
|
- Make timeout dispatch code not recurse while traversing a linked
|
|
|
|
list, so it doesn't try to free an entries that have been removed.
|
2006-06-22 18:55:54 +00:00
|
|
|
(bz #195723)
|
2006-06-22 18:17:27 +00:00
|
|
|
- Don't patch in a makefile, do it in the spec.
|
|
|
|
|
2006-06-08 18:24:16 +00:00
|
|
|
* Thu Jun 08 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-14
|
|
|
|
- fix bug 191461: preserve ntp.conf local clock fudge statements
|
|
|
|
- fix bug 193047: both dhcp and dhclient need to ship common
|
|
|
|
man-pages: dhcp-options(5) dhcp-eval(5)
|
|
|
|
|
2006-05-30 16:04:58 +00:00
|
|
|
* Tue May 30 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-12
|
|
|
|
- Make -R option take effect in per-interface client configs
|
|
|
|
|
2006-05-26 23:43:01 +00:00
|
|
|
* Fri May 26 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-10
|
|
|
|
- fix bug 193047: allow $METRIC to be specified for dhclient routes
|
|
|
|
- add a '-R <request option list>' dhclient argument
|
|
|
|
|
2006-05-26 17:12:09 +00:00
|
|
|
* Fri May 26 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-8.1
|
|
|
|
- fix a libdhcp4client memory leak (1 strdup) and
|
|
|
|
fill in client->packet.siaddr before bind_lease() for pump
|
|
|
|
nextServer option.
|
|
|
|
|
|
|
|
* Fri May 19 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-8
|
2006-05-19 15:06:49 +00:00
|
|
|
- Make libdhcp4client a versioned .so (BZ 192146)
|
|
|
|
|
2006-05-17 14:07:37 +00:00
|
|
|
* Wed May 17 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-4
|
|
|
|
- Enable libdhcp4client build
|
|
|
|
|
2006-05-16 16:40:03 +00:00
|
|
|
* Tue May 16 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-2
|
|
|
|
- Fix bug 191470: prevent dhcpd writing 8 byte dhcp-lease-time
|
|
|
|
option in packets on 64-bit platforms
|
|
|
|
|
2006-05-15 14:49:20 +00:00
|
|
|
* Sun May 14 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-2
|
|
|
|
- Add the libdhcp4client library package for use by the new libdhcp
|
|
|
|
package, which enables dhclient to be invoked by programs in a
|
|
|
|
single process from the library. The normal dhclient code is
|
|
|
|
unmodified by this.
|
|
|
|
|
2006-05-09 16:35:25 +00:00
|
|
|
* Mon May 08 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-2
|
|
|
|
- Add new dhclient command line argument:
|
|
|
|
-V <vendor-class-identifier>
|
|
|
|
|
2006-05-08 14:01:55 +00:00
|
|
|
* Sat May 06 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-1
|
|
|
|
- Upgrade to upstream version 3.0.4, released Friday 2006-05-05 .
|
|
|
|
- Add new dhclient command line arguments:
|
|
|
|
-H <host-name> : parse as dhclient.conf 'send host-name "<host-name>";'
|
|
|
|
-F <fqdn> : parse as dhclient.conf 'send fqdn.fqdn "<fqdn>";'
|
|
|
|
-T <timeout> : parse as dhclient.conf 'timeout <timeout>;'
|
|
|
|
|
2006-03-02 22:55:31 +00:00
|
|
|
* Thu Mar 02 2006 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-26
|
|
|
|
- fix bug 181908: enable dhclient to operate on IBM zSeries z/OS linux guests:
|
|
|
|
o add -I <dhcp-client-identifier> dhclient command line option
|
|
|
|
o add -B "always broadcast" dhclient command line option
|
|
|
|
o add 'bootp-broadcast-always;' dhclient.conf statement
|
|
|
|
|
2006-02-20 22:14:58 +00:00
|
|
|
* Mon Feb 20 2006 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-24
|
|
|
|
- Apply upstream fix for bug 176615 / ISC RT#15811
|
|
|
|
|
2006-02-14 18:23:46 +00:00
|
|
|
* Tue Feb 14 2006 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-22
|
|
|
|
- fix bug 181482: resolv.conf not updated on RENEW :
|
|
|
|
since dhcp-3.0.1rc12-RHScript.patch: "$new_domain_servers" should have
|
|
|
|
been "$new_domain_name_servers" :-(
|
|
|
|
|
2006-02-11 02:25:34 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 11:3.0.3-21.1.1
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 00:28:01 +00:00
|
|
|
* Mon Feb 06 2006 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-21.1
|
|
|
|
- Rebuild for new gcc, glibc and glibc-kernheaders
|
|
|
|
|
2006-01-22 20:49:50 +00:00
|
|
|
* Sun Jan 22 2006 Dan Williams <dcbw@redhat.com> - 11:3.0.3-21
|
|
|
|
- Fix dhclient-script to use /bin/dbus-send now that all dbus related
|
|
|
|
binaries are in /bin rather than /usr/bin
|
|
|
|
|
2006-01-16 21:18:31 +00:00
|
|
|
* Mon Jan 16 2006 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-20
|
|
|
|
- fix bug 177845: allow client ip-address as default router
|
|
|
|
- fix bug 176615: fix DDNS update when Windows-NT client sends
|
|
|
|
host-name with trailing nul
|
|
|
|
|
2005-12-20 19:25:55 +00:00
|
|
|
* Tue Dec 20 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-18
|
|
|
|
- fix bug 176270: allow routers with an octet of 255 in their IP address
|
|
|
|
|
2005-12-09 22:40:11 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2005-12-05 17:54:46 +00:00
|
|
|
* Mon Dec 05 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-16
|
|
|
|
- fix gcc 4.1 compile warnings (-Werror)
|
|
|
|
|
2005-11-18 20:39:34 +00:00
|
|
|
* Fri Nov 19 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-12
|
|
|
|
- fix bug 173619: dhclient-script should reconfig on RENEW if
|
|
|
|
subnet-mask, broadcast-address, mtu, routers, etc.
|
|
|
|
have changed
|
|
|
|
- apply upstream improvements to trailing nul options fix of bug 160655
|
|
|
|
|
2005-11-15 17:12:11 +00:00
|
|
|
* Tue Nov 15 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-11
|
|
|
|
- Rebuild for FC-5
|
|
|
|
- fix bug 167028 - test IBM's unicast bootp patch (from xma@us.ibm.com)
|
|
|
|
- fix bug 171312 - silence chkconfig error message if ypbind not installed
|
|
|
|
- fix dhcpd.init when -cf arg given to dhcpd
|
|
|
|
- make dhcpd init touch /var/lib/dhcpd/dhcpd.leases, not /var/lib/dhcp/dhcpd.leases
|
|
|
|
|
2005-10-19 00:16:37 +00:00
|
|
|
* Tue Oct 18 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-10
|
|
|
|
- Allow dhclient route metrics to be specified with DHCP options:
|
|
|
|
The dhcp-options(5) man-page states:
|
|
|
|
'option routers ... Routers should be listed in order of preference'
|
|
|
|
and
|
|
|
|
'option static-routes ... are listed in descending order of priority' .
|
|
|
|
No preference / priority could be set with previous dhclient-script .
|
|
|
|
Now, dhclient-script provides:
|
|
|
|
Default Gateway (option 'routers') metrics:
|
|
|
|
Instead of allowing only one default gateway, if more than one router
|
|
|
|
is specified in the routers option, routers following the first router
|
|
|
|
will have a 'metric' of their position in the list (1,...N>1).
|
|
|
|
Option static-routes metrics:
|
|
|
|
If a target appears in the list more than once, routes for duplicate
|
|
|
|
targets will have successively greater metrics, starting at 1.
|
|
|
|
|
|
|
|
* Mon Oct 17 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-8
|
2005-10-17 16:50:08 +00:00
|
|
|
- further fix for bug 160655 / ISC bug 15293 - upstream patch:
|
|
|
|
do NOT always strip trailing nulls in the dhcpd server
|
2005-10-19 00:16:37 +00:00
|
|
|
- handle static-routes option properly in dhclient-script :
|
|
|
|
trailing 0 octets in the 'target' IP specify the class -
|
|
|
|
ie '172.16.0.0 w.x.y.z' specifies '172.16/16 via w.x.y.z'.
|
2005-10-17 16:50:08 +00:00
|
|
|
|
2005-09-23 21:15:43 +00:00
|
|
|
* Fri Sep 23 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-7
|
|
|
|
- fix bug 169164: separate /var/lib/{dhcpd,dhclient} directories
|
|
|
|
- fix bug 167292: update failover port info in dhcpd.conf.5; give
|
|
|
|
failover ports default values in server/confpars.c
|
|
|
|
|
2005-09-12 20:42:14 +00:00
|
|
|
* Mon Sep 12 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-6
|
|
|
|
- fix bug 167273: time-offset should not set timezone by default
|
|
|
|
tzdata's Etc/* files are named with reverse sign
|
|
|
|
for hours west - ie. 'GMT+5' is GMT offset -18000seconds.
|
|
|
|
|
2005-08-29 22:32:55 +00:00
|
|
|
* Mon Aug 29 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-4
|
|
|
|
- fix bug 166926: make dhclient-script handle interface-mtu option
|
|
|
|
make dhclient-script support /etc/dhclient{,-$IF}-{up,down}-hooks scripts
|
|
|
|
to allow easy customization to support other non-default DHCP options -
|
|
|
|
documented in 'man 8 dhclient-script' .
|
|
|
|
- handle the 'time-offset' DHCP option, requested by default.
|
|
|
|
|
2005-08-23 21:27:54 +00:00
|
|
|
* Tue Aug 23 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-3
|
|
|
|
- fix bug 160655: strip trailing '\0' bytes from text options before append
|
|
|
|
- fix gcc4 compiler warnings ; now compiles with -Werror
|
|
|
|
- add RPM_OPT_FLAGS to link as suggested in gcc man-page on '-pie' option
|
|
|
|
- change ISC version string to 'V3.0.3-RedHat' at request of ISC
|
|
|
|
|
2005-08-09 22:01:51 +00:00
|
|
|
* Tue Aug 9 2005 Jeremy Katz <katzj@redhat.com> - 11:3.0.3-2
|
|
|
|
- don't explicitly require 2.2 era kernel, it's fairly overkill at this point
|
|
|
|
|
2005-07-30 00:48:18 +00:00
|
|
|
* Fri Jul 29 2005 Jason Vas Dias <jvdias@redhat.com> 11:3.0.3-1
|
|
|
|
- Upgrade to upstream version 3.0.3
|
|
|
|
- Don't apply the 'default boot file server' patch: legacy
|
|
|
|
dhcp behaviour broke RFC 2131, which requires that the siaddr
|
|
|
|
field only be non-zero if the next-server or tftp-server-name
|
|
|
|
options are specified.
|
|
|
|
- Try removing the 1-5 second wait on dhclient startup altogether.
|
2005-07-30 00:58:55 +00:00
|
|
|
- fix bug 163367: supply default configuration file for dhcpd
|
2005-07-30 00:48:18 +00:00
|
|
|
|
2005-07-14 16:55:04 +00:00
|
|
|
* Thu Jul 14 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.3rc1-1
|
2005-07-14 16:54:21 +00:00
|
|
|
- Upgrade to upstream version 3.0.3rc1
|
|
|
|
- fix bug 163203: silence ISC blurb on configtest
|
2005-07-14 19:01:29 +00:00
|
|
|
- fix default 'boot file server' value (packet->siaddr):
|
|
|
|
In dhcp-3.0.2(-), this was defaulted to the server address;
|
|
|
|
now it defaults to 0.0.0.0 (a rather silly default!) and
|
|
|
|
must be specified with the 'next-server' option ( not the tftp-boot-server option ?!?)
|
|
|
|
which causes PXE boot clients to fail to load anything after the boot file.
|
2005-07-14 16:54:21 +00:00
|
|
|
|
2005-07-08 23:22:20 +00:00
|
|
|
* Fri Jul 08 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-14.FC5
|
|
|
|
- Allow package to compile with glibc-headers-2.3.5-11 (tr.c's use of __u16)
|
|
|
|
|
2005-06-17 19:03:10 +00:00
|
|
|
* Fri May 10 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-14
|
|
|
|
- Fix bug 159929: prevent dhclient flooding network on repeated DHCPDECLINE
|
|
|
|
- dhclient fast startup:
|
|
|
|
remove dhclient's random 1-5 second delay on startup if only
|
|
|
|
configuring one interface
|
|
|
|
remove dhclient_script's "sleep 1" on PREINIT
|
|
|
|
- fix new gcc-4.0.0-11 compiler warnings for binding_state_t
|
|
|
|
|
2005-05-03 19:00:34 +00:00
|
|
|
* Tue May 03 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-12
|
|
|
|
- Rebuild for new glibc
|
|
|
|
- Fix dhcdbd set for multiple interfaces
|
|
|
|
|
2005-04-27 22:50:12 +00:00
|
|
|
* Wed Apr 27 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-11
|
|
|
|
- as pointed out by Peter Jones, dhclient-script spews
|
|
|
|
- 'chkconfig: Usage' if run in init state 1 (runlevel returns "unknown".)
|
|
|
|
- this is now corrected.
|
|
|
|
|
|
|
|
* Mon Apr 25 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-10
|
2005-04-25 16:37:57 +00:00
|
|
|
- dhclient-script dhcdbd extensions.
|
|
|
|
- Tested to have no effect unless dhcdbd invokes dhclient.
|
|
|
|
|
2005-04-21 19:36:21 +00:00
|
|
|
* Thu Apr 21 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-9
|
|
|
|
- bugs 153244 & 155143 are now fixed with SELinux policy;
|
|
|
|
autotrans now works for dhcpc_t, so restorecons are not required,
|
|
|
|
and dhclient runs OK under dhcpc_t with SELinux enforcing.
|
|
|
|
- fix bug 155506: 'predhclien' typo (emacs!).
|
|
|
|
|
2005-04-18 18:08:55 +00:00
|
|
|
* Mon Apr 18 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-8
|
2005-04-21 19:36:21 +00:00
|
|
|
- Fix bugs 153244 & 155143:
|
2005-04-18 18:08:55 +00:00
|
|
|
o restore dhclient-script 'restorecon's
|
|
|
|
o give dhclient and dhclient-script an exec context of
|
|
|
|
'system_u:object_r:sbin_t' that allows them to run
|
|
|
|
domainname / hostname and to update configuration files
|
|
|
|
in dhclient post script.
|
|
|
|
- Prevent dhclient emitting verbose ISC 'blurb' on error exit in -q mode
|
|
|
|
|
2005-04-05 22:20:23 +00:00
|
|
|
* Mon Apr 04 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-7
|
2005-04-05 00:45:46 +00:00
|
|
|
- Add '-x' "extended option environment" dhclient argument:
|
|
|
|
- When -x option given to dhclient:
|
|
|
|
- dhclient enables arbitrary option processing by writing information
|
|
|
|
- about user or vendor defined option space options to environment.
|
|
|
|
-
|
|
|
|
- fix bug 153244: dhclient should not use restorecon
|
|
|
|
- fix bug 151023: dhclient no 'headers & libraries'
|
|
|
|
- fix bug 149780: add 'DHCLIENT_IGNORE_GATEWAY' variable
|
|
|
|
- remove all usage of /sbin/route from dhclient-script
|
|
|
|
|
2005-03-24 16:17:53 +00:00
|
|
|
* Thu Mar 24 2005 Florian La Roche <laroche@redhat.com>
|
|
|
|
- add "exit 0" to post script
|
|
|
|
|
2005-03-07 20:22:10 +00:00
|
|
|
* Mon Mar 07 2005 Jason Vas Dias <jvdias@redhat.com> 10.3.0.2-3
|
|
|
|
- rebuild for gcc4/glibc-2.3.4-14; fix bad memset
|
|
|
|
|
2005-02-25 01:00:04 +00:00
|
|
|
* Thu Feb 24 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-2
|
|
|
|
- Fix bug 143640: do not allow more than one dhclient to configure an interface
|
|
|
|
|
2005-02-21 15:46:32 +00:00
|
|
|
* Mon Feb 21 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-1
|
|
|
|
- Upgrade to ISC 3.0.2 Final Release (documentation change only).
|
|
|
|
|
2005-02-16 00:24:29 +00:00
|
|
|
* Tue Feb 14 2005 Jason Vas Dias <jvdias@redhat.com> 8:3.0.2rc3-8
|
|
|
|
- Add better execshield security link options
|
|
|
|
- fix dhcpd.init when no /etc/dhcpd.conf exists and -cf in DHCPDARGS
|
|
|
|
|
|
|
|
* Mon Feb 14 2005 Jason Vas Dias <jvdias@redhat.com> 8:3.0.2rc3-4
|
2005-02-14 17:42:22 +00:00
|
|
|
- make dhclient-script TIMEOUT mode do exactly the same configuration
|
|
|
|
- as BOUND / RENEW / REBIND / REBOOT if router ping succeeds
|
|
|
|
|
|
|
|
* Mon Feb 14 2005 Jason Vas Dias <jvdias@redhat.com> 3.0.2rc3-4
|
2005-02-13 21:17:51 +00:00
|
|
|
- fix bug 147926: dhclient-script should do restorecon for modified conf files
|
|
|
|
- optimize execshield protection
|
|
|
|
|
2005-02-11 01:08:07 +00:00
|
|
|
* Thu Feb 10 2005 Jason Vas Dias <jvdias@redhat.com> 8.3.0.4rc3-3
|
|
|
|
- fix bug 147375: dhcpd heap corruption on 32-bit 'subnet' masks
|
|
|
|
- fix bug 147502: dhclient should honor GATEWAYDEV and GATEWAY settings
|
|
|
|
- fix bug 146600: dhclient's timeout mode ping should use -I
|
|
|
|
- fix bug 146524: dhcpd.init should discard dhcpd's initial output message
|
|
|
|
- fix bug 147739: dhcpd.init configtest should honor -cf in DHCPDARGS
|
|
|
|
|
2005-01-24 19:31:46 +00:00
|
|
|
* Mon Jan 24 2005 Jason Vas Dias <jvdias@redhat.com> 8:3.0.2rc3-2
|
|
|
|
- fix bug 145997: allow hex 32-bit integers in user specified options
|
|
|
|
|
|
|
|
* Thu Jan 06 2005 Jason Vas Dias <jvdias@redhat.com> 8:3.0.2rc3-1
|
2005-01-07 00:11:30 +00:00
|
|
|
- still need an epoch to get past nvre test
|
|
|
|
|
2005-01-07 00:05:31 +00:00
|
|
|
* Thu Jan 06 2005 Jason Vas Dias <jvdias@redhat.com> 3.0.2rc3-1
|
|
|
|
- fix bug 144417: much improved dhclient-script
|
|
|
|
|
|
|
|
* Thu Jan 06 2005 Jason Vas Dias <jvdias@redhat.com> 3.0.2rc3-1
|
|
|
|
- Upgrade to latest release from ISC, which includes most of our
|
|
|
|
- recent patches anyway.
|
|
|
|
|
2005-01-06 14:01:28 +00:00
|
|
|
* Thu Jan 06 2005 Jason Vas Dias <jvdias@redhat.com> 7:3.0.1-17
|
|
|
|
- fix bug 144250: gcc-3.4.3-11 is broken :
|
2007-02-17 04:31:07 +00:00
|
|
|
- log_error ("Lease with bogus binding state: %%d size: %%d",
|
2005-01-06 14:01:28 +00:00
|
|
|
- comp -> binding_state,
|
|
|
|
- sizeof(comp->binding_state));
|
|
|
|
- prints: 'Lease with bogus binding state: 257 1' !
|
|
|
|
- compiling with gcc33 (compat-gcc-8-3.3.4.2 fixes for now).
|
|
|
|
|
|
|
|
* Mon Jan 03 2005 Jason Vas Dias <jvdias@redhat.com> 7:3.0.1-16
|
2005-01-03 22:46:19 +00:00
|
|
|
- fix bug 143704: dhclient -r does not work if lease held by
|
|
|
|
- dhclient run from ifup . dhclient will now look for the pid
|
|
|
|
- files created by ifup .
|
|
|
|
|
2004-11-17 20:57:58 +00:00
|
|
|
* Wed Nov 17 2004 Jason Vas Dias <jvdias@redhat.com> 7:3.0.1-14
|
|
|
|
- NTP: fix bug 139715: merge in new ntp servers only rather than replace
|
|
|
|
- all the ntp configuration files; restart ntpd if configuration changed.
|
|
|
|
|
2004-11-16 20:07:27 +00:00
|
|
|
* Tue Nov 16 2004 Jason Vas Dias <jvdias@redhat.com> 7:3.0.1-12
|
|
|
|
- fix bug 138181 & bug 139468: do not attempt to listen/send on
|
|
|
|
- unconfigured loopback, point-to-point or non-broadcast
|
|
|
|
- interfaces (don't generate annoying log messages)
|
|
|
|
- fix bug 138869: dhclient-script: check if '$new_routers' is
|
|
|
|
- empty before doing 'set $new_routers;...;ping ... $1'
|
|
|
|
|
2004-10-06 19:59:50 +00:00
|
|
|
* Wed Oct 06 2004 Jason Vas Dias <jvdias@redhat.com> 7:3.0.1-11
|
|
|
|
- dhcp-3.0.2b1 came out today. A diff of the 'ack_lease' function
|
|
|
|
- Dave Hankins and I patched exposed a missing '!' on an if clause
|
|
|
|
- that got dropped with the 'new-host' patch. Replacing the '!' .
|
|
|
|
- Also found one missing host_dereference.
|
|
|
|
|
2004-10-06 17:28:02 +00:00
|
|
|
* Wed Oct 06 2004 Jason Vas Dias <jvdias@redhat.com> 7:3.0.1-10
|
|
|
|
- clean-up last patch: new-host.patch adds host_reference(host)
|
|
|
|
- without host_dereference(host) before returns in ack_lease
|
|
|
|
- (dhcp-3.0.1-host_dereference.patch)
|
2004-10-06 19:59:50 +00:00
|
|
|
|
2004-09-28 14:43:50 +00:00
|
|
|
* Mon Sep 27 2004 Jason Vas Dias <jvdias@redhat.com> 7:3.0.1-9
|
|
|
|
- Fix bug 133522:
|
|
|
|
- PXE Boot clients with static leases not given 'file' option
|
|
|
|
- 104 by server - PXE booting was disabled for 'fixed-address'
|
|
|
|
- clients.
|
|
|
|
|
2004-09-10 16:45:20 +00:00
|
|
|
* Fri Sep 10 2004 Jason Vas Dias <jvdias@redhat.com> 7:3.0.1-8
|
|
|
|
- Fix bug 131212:
|
|
|
|
- If "deny booting" is defined for some group of hosts,
|
|
|
|
- then after one of those hosts is denied booting, all
|
|
|
|
- hosts are denied booting, because of a pointer not being
|
|
|
|
- cleared in the lease record.
|
|
|
|
- An upstream patch was obtained which will be in dhcp-3.0.2 .
|
|
|
|
|
2004-09-09 04:20:18 +00:00
|
|
|
* Mon Aug 16 2004 Jason Vas Dias <jvdias@redhat.com> 7:3.0.1-7
|
|
|
|
- Forward DNS update by client was disabled by a bug that I
|
|
|
|
- found in code where 'client->sent_options' was being
|
|
|
|
- freed too early.
|
|
|
|
- Re-enabled it after contacting upstream maintainer
|
|
|
|
- who confirmed that this was a bug (bug #130069) -
|
|
|
|
- submitted patch dhcp-3.0.1.preserve-sent-options.patch.
|
|
|
|
- Upstream maintainer informs me this patch will be in dhcp-3.0.2 .
|
2004-09-09 04:20:02 +00:00
|
|
|
|
2004-09-09 04:18:47 +00:00
|
|
|
* Tue Aug 3 2004 Jason Vas Dias <jvdias@redhat.com> 6:3.0.1-6
|
|
|
|
- Allow 2.0 kernels to obtain default gateway via dhcp
|
|
|
|
|
|
|
|
* Mon Aug 2 2004 Jason Vas Dias <jvdias@redhat.com> 5:3.0.1-5
|
|
|
|
- Invoke 'change_resolv_conf' function to change resolv.conf
|
|
|
|
|
2004-09-09 04:18:33 +00:00
|
|
|
* Fri Jul 16 2004 Jason Vas Dias <jvdias@redhat.com> 3:3.0.1
|
|
|
|
- Upgraded to new ISC 3.0.1 version
|
|
|
|
|
2004-09-09 04:18:01 +00:00
|
|
|
* Thu Jun 24 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc14-5
|
|
|
|
- Allow dhclient-script to continue without a config file.
|
|
|
|
- It will use default values.
|
|
|
|
|
2004-09-09 04:17:53 +00:00
|
|
|
* Wed Jun 23 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc14-4
|
|
|
|
- fix inherit-leases patch
|
|
|
|
|
2004-09-09 04:17:49 +00:00
|
|
|
* Tue Jun 22 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc14-2
|
|
|
|
- Turn on inherit-leases patch
|
|
|
|
|
|
|
|
* Tue Jun 22 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc14-1
|
|
|
|
- User kernelversion instead of uname-r
|
|
|
|
- Update to latest package from ISC
|
|
|
|
- Remove inherit-leases patch for now.
|
|
|
|
|
2004-09-09 04:16:42 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 04:16:17 +00:00
|
|
|
* Thu Jun 10 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc13-1
|
|
|
|
- Update to latest package from ISC
|
|
|
|
|
2004-09-09 04:16:14 +00:00
|
|
|
* Thu Jun 10 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc12-9
|
|
|
|
- add route back in after route up call
|
|
|
|
|
|
|
|
* Wed Jun 9 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc12-8
|
2004-09-09 04:15:53 +00:00
|
|
|
- add alex's dhcp-3.0.1rc12-inherit-leases.patch patch
|
|
|
|
|
|
|
|
* Tue Jun 8 2004 Bill Nottingham <notting@redhat.com> 1:3.0.1rc12-7
|
|
|
|
- set device on default gateway route
|
|
|
|
|
2004-09-09 04:15:45 +00:00
|
|
|
* Mon May 17 2004 Thomas Woerner <twoerner@redhat.com> 1:3.0.1rc12-6
|
|
|
|
- compiling dhcpd PIE
|
|
|
|
|
|
|
|
* Thu Mar 25 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc12-5
|
|
|
|
- Add static routes patch to dhclient-script
|
|
|
|
|
2004-09-09 04:15:43 +00:00
|
|
|
* Wed Mar 25 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc12-4
|
|
|
|
- Fix init to check config during restart
|
|
|
|
|
|
|
|
* Wed Mar 24 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc12-3
|
|
|
|
- Fix init script to create leases file if missing
|
|
|
|
|
2004-09-09 04:15:21 +00:00
|
|
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 04:14:59 +00:00
|
|
|
* Wed Jan 21 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.20
|
|
|
|
- Fix initialization of memory to prevent compiler error
|
|
|
|
|
|
|
|
* Mon Jan 5 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.19
|
|
|
|
- Close leaseFile before exec, to fix selinux error message
|
|
|
|
|
|
|
|
* Mon Dec 29 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.18
|
|
|
|
- Add BuildRequires groff
|
|
|
|
- Replace resolv.conf if renew and data changes
|
|
|
|
|
|
|
|
* Sun Nov 30 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.17
|
|
|
|
- Add obsoletes dhcpcd
|
|
|
|
|
2004-09-09 04:14:53 +00:00
|
|
|
* Wed Oct 8 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.16
|
|
|
|
- Fix location of ntp driftfile
|
|
|
|
|
|
|
|
* Fri Sep 5 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.15
|
|
|
|
- Bump Release
|
|
|
|
|
|
|
|
* Fri Sep 5 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.14
|
|
|
|
- Add div0 patch
|
|
|
|
|
|
|
|
* Wed Aug 20 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.13
|
|
|
|
- Add SEARCH to client script
|
|
|
|
|
|
|
|
* Wed Aug 20 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.12
|
|
|
|
- Bump Release
|
|
|
|
|
|
|
|
* Wed Aug 20 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.11
|
|
|
|
- Add configtest
|
|
|
|
|
|
|
|
* Fri Aug 1 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.10
|
|
|
|
- increment for base
|
|
|
|
|
|
|
|
* Fri Aug 1 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.9
|
|
|
|
- Don't update resolv.conf on renewals
|
|
|
|
|
|
|
|
* Tue Jul 29 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.8
|
|
|
|
- increment for base
|
|
|
|
|
|
|
|
* Tue Jul 29 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.7
|
|
|
|
- Fix name of driftfile
|
|
|
|
|
|
|
|
* Tue Jul 29 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.6
|
|
|
|
- increment for base
|
|
|
|
|
|
|
|
* Tue Jul 29 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.5
|
|
|
|
- Change dhcrelay script to check DHCPSERVERS
|
|
|
|
|
|
|
|
* Mon Jul 7 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.4
|
|
|
|
- increment for base
|
|
|
|
|
|
|
|
* Mon Jul 7 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.3
|
|
|
|
- Fix dhclient-script to support PEERNTP and PEERNIS flags.
|
|
|
|
- patch submitted by aoliva@redhat.com
|
|
|
|
|
|
|
|
* Sun Jun 8 2003 Tim Powers <timp@redhat.com> 1:3.0pl2-6.1
|
|
|
|
- add epoch to dhcp-devel versioned requires on dhcp
|
|
|
|
- build for RHEL
|
|
|
|
|
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Tue May 27 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl2-5
|
|
|
|
- Fix memory leak in parser.
|
|
|
|
|
|
|
|
* Mon May 19 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl2-4
|
|
|
|
- Change Rev for RHEL
|
|
|
|
|
|
|
|
* Mon May 19 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl2-3
|
|
|
|
- Change example to not give out 255 address.
|
|
|
|
|
|
|
|
* Tue Apr 29 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl2-2
|
|
|
|
- Change Rev for RHEL
|
|
|
|
|
|
|
|
* Mon Apr 28 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl2-1
|
|
|
|
- upgrade to 3.0pl2
|
|
|
|
|
|
|
|
* Wed Mar 26 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-26
|
|
|
|
- add usage for dhcprelay -c
|
|
|
|
- add man page for dhcprelay -c
|
|
|
|
|
|
|
|
* Fri Mar 7 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-25
|
|
|
|
- Fix man dhcpd.conf man page
|
|
|
|
|
|
|
|
* Tue Mar 4 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-24
|
|
|
|
- Fix man dhcpctl.3 page
|
|
|
|
|
2004-09-09 04:12:22 +00:00
|
|
|
* Mon Feb 3 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-23
|
|
|
|
- fix script to handle ntp.conf correctly
|
|
|
|
|
|
|
|
* Thu Jan 29 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-22
|
|
|
|
- Increment release to add to 8.1
|
|
|
|
|
|
|
|
* Wed Jan 29 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-21
|
|
|
|
- Implement max hops patch
|
|
|
|
|
|
|
|
* Wed Jan 29 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-20
|
|
|
|
- It has now been decided to just have options within dhclient kit
|
|
|
|
|
|
|
|
* Sun Jan 26 2003 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- add defattr() to have files not owned by root
|
|
|
|
|
|
|
|
* Fri Jan 24 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-17
|
|
|
|
- require kernel version
|
|
|
|
|
|
|
|
* Fri Jan 24 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-16
|
|
|
|
- move dhcp-options to separate package
|
|
|
|
|
|
|
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Thu Jan 9 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-15
|
|
|
|
- eliminate dhcp-options from dhclient in order to get errata out
|
|
|
|
|
|
|
|
* Wed Jan 8 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-14
|
|
|
|
- VU#284857 - ISC DHCPD minires library contains multiple buffer overflows
|
|
|
|
|
|
|
|
* Mon Jan 6 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-13
|
|
|
|
- Fix when ntp is not installed.
|
|
|
|
|
|
|
|
* Mon Jan 6 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-12
|
|
|
|
- Fix #73079 (dhcpctl man page)
|
|
|
|
|
|
|
|
* Thu Nov 14 2002 Elliot Lee <sopwith@redhat.com> 3.0pl1-11
|
|
|
|
- Use generic PTRSIZE_64BIT detection instead of ifarch.
|
|
|
|
|
|
|
|
* Thu Nov 14 2002 Preston Brown <pbrown@redhat.com> 3.0pl1-10
|
|
|
|
- fix parsing of command line args in dhclient. It was missing a few.
|
|
|
|
|
|
|
|
* Mon Oct 07 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- work on 64bit archs
|
|
|
|
|
2004-09-09 04:12:06 +00:00
|
|
|
* Wed Aug 28 2002 Elliot Lee <sopwith@redhat.com> 3.0pl1-9
|
|
|
|
- Fix #72795
|
|
|
|
|
2004-09-09 04:12:03 +00:00
|
|
|
* Mon Aug 26 2002 Elliot Lee <sopwith@redhat.com> 3.0pl1-8
|
|
|
|
- More #68650 (modify requested options)
|
|
|
|
- Fix #71453 (dhcpctl man page) and #71474 (include libdst.a) and
|
|
|
|
#72622 (hostname setting)
|
|
|
|
|
2004-09-09 04:11:59 +00:00
|
|
|
* Thu Aug 15 2002 Elliot Lee <sopwith@redhat.com> 3.0pl1-7
|
|
|
|
- More #68650 (modify existing patch to also set NIS domain)
|
|
|
|
|
2004-09-09 04:11:53 +00:00
|
|
|
* Tue Aug 13 2002 Elliot Lee <sopwith@redhat.com> 3.0pl1-6
|
|
|
|
- Patch102 (dhcp-3.0pl1-dhcpctlman-69731.patch) to fix #69731
|
|
|
|
|
|
|
|
* Tue Aug 13 2002 Elliot Lee <sopwith@redhat.com> 3.0pl1-5
|
|
|
|
- Patch101 (dhcp-3.0pl1-dhhostname-68650.patch) to fix #68650
|
|
|
|
|
|
|
|
* Fri Jul 12 2002 Elliot Lee <sopwith@redhat.com> 3.0pl1-4
|
|
|
|
- Fix unaligned accesses when decoding a UDP packet
|
|
|
|
|
|
|
|
* Thu Jul 11 2002 Elliot Lee <sopwith@redhat.com> 3.0pl1-3
|
2004-09-09 04:12:03 +00:00
|
|
|
- No apparent reason for the dhclient -> dhcp dep mentioned in #68001,
|
|
|
|
so removed it
|
2004-09-09 04:11:53 +00:00
|
|
|
|
|
|
|
* Wed Jun 27 2002 David Sainty <saint@redhat.com> 3.0pl1-2
|
|
|
|
- Move dhclient.conf.sample from dhcp to dhclient
|
|
|
|
|
|
|
|
* Mon Jun 25 2002 David Sainty <saint@redhat.com> 3.0pl1-1
|
|
|
|
- Change to dhclient, dhcp, dhcp-devel packaging
|
|
|
|
- Move to 3.0pl1, do not strip binaries
|
|
|
|
- Drop in sysconfig-enabled dhclient-script
|
|
|
|
|
|
|
|
* Thu May 23 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
* Sat Jan 26 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- prereq chkconfig
|
|
|
|
|
|
|
|
* Tue Jan 22 2002 Elliot Lee <sopwith@redhat.com> 3.0-5
|
|
|
|
- Split headers/libs into a devel subpackage (#58656)
|
|
|
|
|
|
|
|
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
* Fri Dec 28 2001 Elliot Lee <sopwith@redhat.com> 3.0-3
|
|
|
|
- Fix the #52856 nit.
|
|
|
|
- Include dhcrelay scripts from #49186
|
|
|
|
|
|
|
|
* Thu Dec 20 2001 Elliot Lee <sopwith@redhat.com> 3.0-2
|
|
|
|
- Update to 3.0, include devel files installed by it (as part of the main package).
|
|
|
|
|
2004-09-09 04:11:27 +00:00
|
|
|
* Sun Aug 26 2001 Elliot Lee <sopwith@redhat.com> 2.0pl5-8
|
|
|
|
- Fix #26446
|
|
|
|
|
2004-09-09 04:11:23 +00:00
|
|
|
* Mon Aug 20 2001 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- Fix #5405 for real - it is dhcpd.leases not dhcp.leases.
|
|
|
|
|
2004-09-09 04:11:03 +00:00
|
|
|
* Mon Jul 16 2001 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- /etc/sysconfig/dhcpd
|
|
|
|
- Include dhcp.leases file (#5405)
|
|
|
|
|
|
|
|
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- Bump release + rebuild.
|
|
|
|
|
2004-09-09 04:10:54 +00:00
|
|
|
* Wed Feb 14 2001 Tim Waugh <twaugh@redhat.com>
|
|
|
|
- Fix initscript typo (bug #27624).
|
|
|
|
|
2005-08-29 22:32:55 +00:00
|
|
|
* Wed Feb 7 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
2004-09-09 04:10:54 +00:00
|
|
|
- Improve spec file i18n
|
|
|
|
|
|
|
|
* Mon Feb 5 2001 Bernhard Rosenkraenzer <bero@redhat.com>
|
|
|
|
- i18nize init script (#26084)
|
|
|
|
|
|
|
|
* Sun Sep 10 2000 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- update to 2.0pl5
|
|
|
|
- redo buildroot patch
|
|
|
|
|
2004-09-09 04:10:47 +00:00
|
|
|
* Wed Aug 30 2000 Matt Wilson <msw@redhat.com>
|
|
|
|
- rebuild to cope with glibc locale binary incompatibility, again
|
|
|
|
|
|
|
|
* Mon Aug 14 2000 Preston Brown <pbrown@redhat.com>
|
|
|
|
- check for existence of /var/lib/dhcpd.leases in initscript before starting
|
|
|
|
|
|
|
|
* Wed Jul 19 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- rebuild to cope with glibc locale binary incompatibility
|
|
|
|
|
|
|
|
* Sat Jul 15 2000 Bill Nottingham <notting@redhat.com>
|
|
|
|
- move initscript back
|
|
|
|
|
|
|
|
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
|
|
|
|
- automatic rebuild
|
|
|
|
|
|
|
|
* Fri Jul 7 2000 Florian La Roche <Florian.LaRoche@redhat.com>
|
|
|
|
- /etc/rc.d/init.d -> /etc/init.d
|
|
|
|
- fix /var/state/dhcp -> /var/lib/dhcp
|
|
|
|
|
|
|
|
* Fri Jun 16 2000 Preston Brown <pbrown@redhat.com>
|
|
|
|
- condrestart for initscript, graceful upgrades.
|
|
|
|
|
|
|
|
* Thu Feb 03 2000 Erik Troan <ewt@redhat.com>
|
|
|
|
- gzipped man pages
|
|
|
|
- marked /etc/rc.d/init.d/dhcp as a config file
|
|
|
|
|
|
|
|
* Mon Jan 24 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- fix booting of JavaStations
|
|
|
|
(reported by Pete Zaitcev <zaitcev@metabyte.com>).
|
|
|
|
- fix SIGBUS crashes on SPARC (apparently gcc is too clever).
|
|
|
|
|
|
|
|
* Fri Sep 10 1999 Bill Nottingham <notting@redhat.com>
|
2007-02-17 04:31:07 +00:00
|
|
|
- chkconfig --del in %%preun, not %%postun
|
2004-09-09 04:10:47 +00:00
|
|
|
|
|
|
|
* Mon Aug 16 1999 Bill Nottingham <notting@redhat.com>
|
|
|
|
- initscript munging
|
|
|
|
|
|
|
|
* Fri Jun 25 1999 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- update to 2.0.
|
|
|
|
|
|
|
|
* Fri Jun 18 1999 Bill Nottingham <notting@redhat.com>
|
|
|
|
- don't run by default
|
|
|
|
|
|
|
|
* Wed Jun 2 1999 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- update to 2.0b1pl28.
|
|
|
|
|
|
|
|
* Tue Apr 06 1999 Preston Brown <pbrown@redhat.com>
|
|
|
|
- strip binaries
|
|
|
|
|
|
|
|
* Mon Apr 05 1999 Cristian Gafton <gafton@redhat.com>
|
2004-09-09 04:12:22 +00:00
|
|
|
- copy the source file in prep, not move
|
2004-09-09 04:10:47 +00:00
|
|
|
|
|
|
|
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- auto rebuild in the new build environment (release 4)
|
|
|
|
|
|
|
|
* Mon Jan 11 1999 Erik Troan <ewt@redhat.com>
|
|
|
|
- added a sample dhcpd.conf file
|
|
|
|
- we don't need to dump rfc's in /usr/doc
|
|
|
|
|
|
|
|
* Sun Sep 13 1998 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- modify dhcpd.init to exit if /etc/dhcpd.conf is not present
|
|
|
|
|
|
|
|
* Sat Jun 27 1998 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- Upgraded to 2.0b1pl6 (patch1 no longer needed).
|
|
|
|
|
|
|
|
* Thu Jun 11 1998 Erik Troan <ewt@redhat.com>
|
|
|
|
- applied patch from Chris Evans which makes the server a bit more paranoid
|
|
|
|
about dhcp requests coming in from the wire
|
|
|
|
|
|
|
|
* Mon Jun 01 1998 Erik Troan <ewt@redhat.com>
|
|
|
|
- updated to dhcp 2.0b1pl1
|
|
|
|
- got proper man pages in the package
|
|
|
|
|
|
|
|
* Tue Mar 31 1998 Erik Troan <ewt@redhat.com>
|
|
|
|
- updated to build in a buildroot properly
|
|
|
|
- don't package up the client, as it doens't work very well <sigh>
|
|
|
|
|
|
|
|
* Tue Mar 17 1998 Bryan C. Andregg <bandregg@redhat.com>
|
|
|
|
- Build rooted and corrected file listing.
|
|
|
|
|
|
|
|
* Mon Mar 16 1998 Mike Wangsmo <wanger@redhat.com>
|
|
|
|
- removed the actual inet.d links (chkconfig takes care of this for us)
|
2007-02-17 04:31:07 +00:00
|
|
|
and made the %%postun section handle upgrades.
|
2004-09-09 04:10:47 +00:00
|
|
|
|
|
|
|
* Mon Mar 16 1998 Bryan C. Andregg <bandregg@redhat.com>
|
|
|
|
- First package.
|