source: projects/specs/trunk/d/dhcp/dhcp-vl.spec @ 2483

Revision 2483, 56.3 KB checked in by Takemikaduchi, 13 years ago (diff)

rebuild with openssl-1.0.0c

Line 
1# vendor string (e.g., Fedora, EL)
2%define vvendor Vine
3
4Summary:  DHCP (Dynamic Host Configuration Protocol) server and relay agent
5Summary(ja): DHCP (動的ホスト設定プロトコル) サーバおよびリレーエージェント
6Name:     dhcp
7Version:  4.1.0p1
8Release:  4%{?_dist_release}
9
10# NEVER CHANGE THE EPOCH on this package.  The previous maintainer (prior to
11# dcantrell maintaining the package) made incorrect use of the epoch and
12# that's why it is at 12 now.  It should have never been used, but it was.
13# So we are stuck with it.
14Epoch:    12
15License:  ISC
16
17Group:    System Environment/Daemons
18URL:      http://isc.org/products/DHCP/
19Source0:  ftp://ftp.isc.org/isc/%{name}/%{name}-%{version}.tar.gz
20Source1:  dhcpd.init
21Source2:  dhcrelay.init
22Source5:  README.ldap
23Source6:  draft-ietf-dhc-ldap-schema-01.txt
24Source7:  dhcpd-conf-to-ldap
25Source8:  dhclient-script
26Source9: dhcp.schema
27Source10: get-ldap-patch.sh
28
29Patch0:   %{name}-4.1.0-errwarn-message.patch
30Patch1:   %{name}-4.1.0-ldap-configuration.patch
31Patch2:   %{name}-4.1.0-memory.patch
32Patch3:   %{name}-4.1.0-options.patch
33Patch4:   %{name}-4.1.0-release-by-ifup.patch
34Patch5:   %{name}-4.1.0-dhclient-decline-backoff.patch
35Patch6:   %{name}-4.1.0-unicast-bootp.patch
36Patch7:   %{name}-4.1.0-failover-ports.patch
37Patch8:   %{name}-4.1.0-dhclient-usage.patch
38Patch9:   %{name}-4.1.0-default-requested-options.patch
39Patch10:  %{name}-4.1.0-xen-checksum.patch
40Patch11:  %{name}-4.1.0-dhclient-anycast.patch
41Patch12:  %{name}-4.1.0-manpages.patch
42Patch13:  %{name}-4.1.0-paths.patch
43Patch15:  %{name}-4.1.0-inherit-leases.patch
44Patch16:  %{name}-4.1.0-garbage-chars.patch
45Patch17:  %{name}-4.1.0-port-validation.patch
46Patch18:  %{name}-4.1.0-invalid-dhclient-conf.patch
47Patch19:  %{name}-4.1.0-dhclient-option.patch
48
49# security
50Patch100: dhcp-4.1.0-CVE-2009-1892.diff
51Patch110: dhcp-4.1.0-CVE-2010-2156.diff
52Patch120: dhcp-4.1.0p1-CVE-2010-3611.patch
53
54BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
55BuildRequires: autoconf
56BuildRequires: automake
57BuildRequires: groff
58BuildRequires: libtool
59BuildRequires: openldap-devel
60BuildRequires: openssl-devel
61
62Requires(post): chkconfig
63Requires(preun): chkconfig
64Requires(preun): initscripts
65Requires(postun): initscripts
66
67Packager: daisuke, iwamoto
68Vendor: Project Vine
69Distribution: Vine Linux
70
71%description
72DHCP (Dynamic Host Configuration Protocol) is a protocol which allows
73individual devices on an IP network to get their own network
74configuration information (IP address, subnetmask, broadcast address,
75etc.) from a DHCP server. The overall purpose of DHCP is to make it
76easier to administer a large network.  The dhcp package includes the
77ISC DHCP service and relay agent.
78
79To use DHCP on your network, install a DHCP service (or relay agent),
80and on clients run a DHCP client daemon.  The dhcp package provides
81the ISC DHCP service and relay agent.
82
83%package -n dhclient
84Summary: Provides the dhclient ISC DHCP client daemon and dhclient-script
85Summary(ja): DHCP クライアントデーモンと dhclient スクリプト
86Group: System Environment/Base
87Requires: initscripts >= 6.75
88#Obsoletes: dhcpcd <= 1.3.22pl1-7
89#Provides: dhcpcd = 1.3.22pl1-8
90Obsoletes: dhcpcd <= 1.3.22pl4-0vl3
91
92%description -n dhclient
93DHCP (Dynamic Host Configuration Protocol) is a protocol which allows
94individual devices on an IP network to get their own network
95configuration information (IP address, subnetmask, broadcast address,
96etc.) from a DHCP server. The overall purpose of DHCP is to make it
97easier to administer a large network.
98
99To use DHCP on your network, install a DHCP service (or relay agent),
100and on clients run a DHCP client daemon.  The dhclient package
101provides the ISC DHCP client daemon.
102
103%package devel
104Summary: Development headers and libraries for interfacing to the DHCP server
105Summary(ja): DHCP サーバ用インタフェースライブラリとヘッダファイル
106Group: Development/Libraries
107
108%description devel
109Header files and API documentation for using the ISC DHCP libraries.  The
110libdhcpctl and libomapi static libraries are also included in this package.
111
112%prep
113%setup -q
114
115# Replace the standard ISC warning message about requesting help with an
116# explanation that this is a patched build of ISC DHCP and bugs should be
117# reported through bugzilla.redhat.com
118%patch0 -p1
119
120# Add support for dhcpd.conf data in LDAP
121# NOTE: Use get-ldap-patch.sh to pull down latest LDAP patch and then modify
122# it for this package.
123%patch1 -p1
124
125# Fix memory alignment and initialization problems in common/packet.c
126# Fix buffer overflow in minires library
127# Init struct sock_prog in common/lpf.c to NULL
128%patch2 -p1
129
130# Add more dhclient options (-I, -B, -H, -F, -timeout, -V, and -R)
131%patch3 -p1
132
133# Handle releasing interfaces requested by /sbin/ifup
134# pid file is assumed to be /var/run/dhclient-$interface.pid
135%patch4 -p1
136
137# If we receive a DHCP offer in dhclient and it's DECLINEd in dhclient-script,
138# backoff for an amount of time before trying again
139%patch5 -p1
140
141# Support unicast BOOTP for IBM pSeries systems (and maybe others)
142%patch6 -p1
143
144# Use the following IANA-registered failover ports:
145# dhcp-failover 647/tcp
146# dhcp-failover 647/udp
147# dhcp-failover 847/tcp
148# dhcp-failover 847/udp
149%patch7 -p1
150
151# Update the usage screen for dhclient(8) indicating new options
152# Use printf() rather than log_info() to display the information
153# Also, return EXIT_FAILURE when the usage() screen is displayed (stop parsing)
154%patch8 -p1
155
156# Add NIS domain, NIS servers, and NTP servers to the list of default
157# requested DHCP options
158%patch9 -p1
159
160# Handle Xen partial UDP checksums
161%patch10 -p1
162
163# Add anycast support to dhclient (for OLPC)
164%patch11 -p1
165
166# Patch man page contents
167%patch12 -p1
168
169# Change paths to conform to our standards
170%patch13 -p1
171
172# If we have an active lease, do not down the interface (#453982)
173%patch15 -p1
174
175# Fix 'garbage in format string' error (#450052)
176%patch16 -p1
177
178# Validate port numbers specified for dhclient, dhcpd, and dhcrelay
179# to make sure they are within 1-65535, inclusive.  (#438149)
180%patch17 -p1
181
182# The sample dhclient.conf should say 'supersede domain-search' (#467955)
183%patch18 -p1
184
185%patch19 -p1
186
187# security fixes
188%patch100 -p0 -b .CVE-2009-1892
189%patch110 -p0 -b .CVE-2010-2156
190%patch120 -p0 -b .CVE-2010-3611
191
192# Copy in documentation and example scripts for LDAP patch to dhcpd
193%{__install} -p -m 0644 %{SOURCE5} .
194%{__install} -p -m 0644 %{SOURCE6} doc/
195%{__install} -p -m 0755 %{SOURCE7} contrib/
196
197# Copy in the Fedora/RHEL dhclient script
198%{__install} -p -m 0755 %{SOURCE8} client/scripts/linux
199
200# Ensure we don't pick up Perl as a dependency from the scripts and modules
201# in the contrib directory (we copy this to /usr/share/doc in the final
202# package).
203%{__cp} -pR contrib __fedora_contrib
204pushd __fedora_contrib
205%{__chmod} -x 3.0b1-lease-convert dhclient-tz-exithook.sh dhcpd-conf-to-ldap
206%{__chmod} -x sethostname.sh solaris.init
207%{__mv} ms2isc/Registry.pm ms2isc/Registry.perlmodule
208%{__rm} -f dhcp.spec
209
210# We want UNIX-style line endings
211%{__sed} -i -e 's/\r//' ms2isc/readme.txt
212%{__sed} -i -e 's/\r//' ms2isc/Registry.perlmodule
213%{__sed} -i -e 's/\r//' ms2isc/ms2isc.pl
214popd
215
216# Replace @PRODUCTNAME@
217%{__sed} -i -e 's|@PRODUCTNAME@|%{vvendor}|g' common/dhcp-options.5
218%{__sed} -i -e 's|@PRODUCTNAME@|%{vvendor}|g' configure.ac
219
220# Update paths in all man pages
221for page in client/dhclient.conf.5 client/dhclient.leases.5 \
222            client/dhclient-script.8 client/dhclient.8 ; do
223    %{__sed} -i -e 's|CLIENTBINDIR|/sbin|g' \
224                -e 's|RUNDIR|%{_localstatedir}/run|g' \
225                -e 's|DBDIR|%{_localstatedir}/db/dhclient|g' \
226                -e 's|ETCDIR|%{_sysconfdir}/dhcp|g' $page
227done
228
229for page in server/dhcpd.conf.5 server/dhcpd.leases.5 server/dhcpd.8 ; do
230    %{__sed} -i -e 's|CLIENTBINDIR|/sbin|g' \
231                -e 's|RUNDIR|%{_localstatedir}/run|g' \
232                -e 's|DBDIR|%{_localstatedir}/db/dhcpd|g' \
233                -e 's|ETCDIR|%{_sysconfdir}/dhcp|g' $page
234done
235
236aclocal
237libtoolize --copy --force
238autoconf
239autoheader
240automake --foreign --add-missing --copy
241
242%build
243CFLAGS="%{optflags} -fPIC" \
244%configure \
245    --disable-dhcpv6 \
246    --with-srv-lease-file=%{_localstatedir}/lib/dhcpd/dhcpd.leases \
247    --with-cli-lease-file=%{_localstatedir}/lib/dhclient/dhclient.leases \
248    --with-srv-pid-file=%{_localstatedir}/run/dhcpd.pid \
249    --with-cli-pid-file=%{_localstatedir}/run/dhclient.pid \
250    --with-relay-pid-file=%{_localstatedir}/run/dhcrelay.pid
251%{__make} %{?_smp_mflags}
252
253%install
254%{__rm} -rf %{buildroot}
255%{__make} install DESTDIR=%{buildroot}
256
257# Remove files we don't want
258%{__rm} %{buildroot}%{_sysconfdir}/dhclient.conf
259%{__rm} %{buildroot}%{_sysconfdir}/dhcpd.conf
260
261# Install correct dhclient-script
262%{__mkdir} -p %{buildroot}/sbin
263%{__mv} %{buildroot}%{_sbindir}/dhclient %{buildroot}/sbin/dhclient
264%{__install} -p -m 0755 client/scripts/linux %{buildroot}/sbin/dhclient-script
265
266# Install init scripts
267%{__mkdir} -p %{buildroot}%{_initrddir}
268%{__install} -p -m 0755 %{SOURCE1} %{buildroot}%{_initrddir}/dhcpd
269%{__install} -p -m 0755 %{SOURCE2} %{buildroot}%{_initrddir}/dhcrelay
270
271# Start empty lease databases
272%{__mkdir} -p %{buildroot}%{_localstatedir}/lib/dhcpd/
273touch %{buildroot}%{_localstatedir}/lib/dhcpd/dhcpd.leases
274%{__mkdir} -p %{buildroot}%{_localstatedir}/lib/dhclient/
275
276# Create default sysconfig files for dhcpd and dhcrelay
277%{__mkdir} -p %{buildroot}%{_sysconfdir}/sysconfig
278
279%{__cat} << EOF > %{buildroot}%{_sysconfdir}/sysconfig/dhcrelay
280# Command line options here
281INTERFACES=""
282DHCPSERVERS=""
283EOF
284
285%{__cat} <<EOF > %{buildroot}%{_sysconfdir}/sysconfig/dhcpd
286# Command line options here
287DHCPDARGS=
288EOF
289
290# Copy sample conf files into position (called by doc macro)
291%{__cp} -p client/dhclient.conf dhclient.conf.sample
292%{__cp} -p server/dhcpd.conf dhcpd.conf.sample
293
294# Install default (empty) dhcpd.conf:
295%{__mkdir} -p %{buildroot}%{_sysconfdir}/dhcp
296%{__cat} << EOF > %{buildroot}%{_sysconfdir}/dhcp/dhcpd.conf
297#
298# DHCP Server Configuration file.
299#   see /usr/share/doc/dhcp*/dhcpd.conf.sample
300#   see 'man 5 dhcpd.conf'
301#
302EOF
303
304# Install dhcp.schema for LDAP configuration
305%{__mkdir} -p %{buildroot}%{_sysconfdir}/openldap/schema
306%{__install} -p -m 0644 -D %{SOURCE9} %{buildroot}%{_sysconfdir}/openldap/schema
307
308# Install empty directory for dhclient.d scripts
309%{__mkdir} -p %{buildroot}%{_sysconfdir}/dhcp/dhclient.d
310
311# remove perl module (depend perl(Win32API::Registry))
312%{__rm} -rf __fedora_contrib/ms2isc
313
314%clean
315%{__rm} -rf %{buildroot}
316
317%post
318if [ -f /etc/dhcpd.conf -a ! -f /etc/dhcp/dhcpd.conf ]; then
319    /bin/cp -a /etc/dhcpd.conf /etc/dhcp/dhcpd.conf >/dev/null 2>&1
320    /bin/rm -f /etc/dhcpd.conf >/dev/null 2>&1
321fi
322       
323/sbin/chkconfig --add dhcpd
324/sbin/chkconfig --add dhcrelay || :
325
326%post -n dhclient
327/bin/ls -1 /etc/dhclient* >/dev/null 2>&1
328if [ $? = 0 ]; then
329    /bin/ls -1 /etc/dhclient* 2>/dev/null | while read etcfile ; do
330        cf="$(/bin/basename ${etcfile})"
331        if [ ! -f /etc/dhcp/${cf} ]; then
332             /bin/cp -a "${etcfile}" /etc/dhcp
333            /bin/rm -f "${etcfile}"
334        fi
335    done || :
336fi || :
337
338%preun
339if [ $1 = 0 ]; then
340    /sbin/service dhcpd status >/dev/null 2>&1
341    if [ $? = 3 ]; then
342        /sbin/service dhcpd stop >/dev/null 2>&1
343    fi
344
345    /sbin/service dhcrelay status >/dev/null 2>&1
346    if [ $? = 3 ]; then
347        /sbin/service dhcrelay stop >/dev/null 2>&1
348    fi
349
350    /sbin/chkconfig --del dhcpd
351    /sbin/chkconfig --del dhcrelay || :
352fi
353
354%postun
355if [ $1 -ge 1 ]; then
356    /sbin/service dhcpd condrestart >/dev/null 2>&1
357    /sbin/service dhcrelay condrestart >/dev/null 2>&1 || :
358fi
359
360%files
361%defattr(-,root,root,-)
362%doc LICENSE README README.ldap RELNOTES dhcpd.conf.sample
363%doc doc/IANA-arp-parameters doc/api+protocol doc/*.txt __fedora_contrib/*
364%dir %{_localstatedir}/lib/dhcpd
365%dir %{_sysconfdir}/dhcp
366%verify(not size md5 mtime) %config(noreplace) %{_localstatedir}/lib/dhcpd/dhcpd.leases
367%config(noreplace) %{_sysconfdir}/sysconfig/dhcpd
368%config(noreplace) %{_sysconfdir}/sysconfig/dhcrelay
369%config(noreplace) %{_sysconfdir}/dhcp/dhcpd.conf
370%config(noreplace) %{_sysconfdir}/openldap/schema/dhcp.schema
371%{_initrddir}/dhcpd
372%{_initrddir}/dhcrelay
373%{_bindir}/omshell
374%{_sbindir}/dhcpd
375%{_sbindir}/dhcrelay
376%attr(0644,root,root) %{_mandir}/man1/omshell.1.gz
377%attr(0644,root,root) %{_mandir}/man5/dhcpd.conf.5.gz
378%attr(0644,root,root) %{_mandir}/man5/dhcpd.leases.5.gz
379%attr(0644,root,root) %{_mandir}/man8/dhcpd.8.gz
380%attr(0644,root,root) %{_mandir}/man8/dhcrelay.8.gz
381%attr(0644,root,root) %{_mandir}/man5/dhcp-options.5.gz
382%attr(0644,root,root) %{_mandir}/man5/dhcp-eval.5.gz
383
384%files -n dhclient
385%defattr(-,root,root,-)
386%doc dhclient.conf.sample
387%dir %{_sysconfdir}/dhcp
388%dir %{_sysconfdir}/dhcp/dhclient.d
389%dir %{_localstatedir}/lib/dhclient
390/sbin/dhclient
391/sbin/dhclient-script
392%attr(0644,root,root) %{_mandir}/man5/dhclient.conf.5.gz
393%attr(0644,root,root) %{_mandir}/man5/dhclient.leases.5.gz
394%attr(0644,root,root) %{_mandir}/man8/dhclient.8.gz
395%attr(0644,root,root) %{_mandir}/man8/dhclient-script.8.gz
396%attr(0644,root,root) %{_mandir}/man5/dhcp-options.5.gz
397%attr(0644,root,root) %{_mandir}/man5/dhcp-eval.5.gz
398
399%files devel
400%defattr(-,root,root,-)
401%{_includedir}/dhcpctl
402%{_includedir}/isc-dhcp
403%{_includedir}/omapip
404%{_libdir}/libdhcpctl.a
405%{_libdir}/libomapi.a
406%{_libdir}/libdst.a
407%attr(0644,root,root) %{_mandir}/man3/dhcpctl.3.gz
408%attr(0644,root,root) %{_mandir}/man3/omapi.3.gz
409
410%changelog
411* Mon Jan 10 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 12:4.1.0p1-4
412- rebuild with openssl-1.0.0c
413
414* Sat Jan 01 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 12:4.1.0p1-3
415- add patch19 (dhcp-4.1.0-dhclient-option.patch)
416
417* Sat Nov 20 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 12:4.1.0p1-2
418- add patch100 for fix CVE-2009-1892
419- add patch110 for fix CVE-2010-2156
420- add patch120 for fix CVE-2010-3611
421- patch100, 110 are from mkd, Thanks.
422- add BR: openssl-devel, vendor/dist tags
423
424* Wed Jul 15 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 12:4.1.0p1-1
425- new upstream release with security fix (CVE-2009-0692)
426
427* Sun Mar 01 2009 NAKAMURA Kenta <kenta@vinelinux.org> 12:4.1.0-4
428- rebuilt with openldap-2.4.11
429
430* Wed Feb 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 12:4.1.0-3
431- add /etc/dhcp for new config directory
432- update/add post scriptlet to move configs to /etc/dhcp
433  - move /etc/dhclient.conf to /etc/dhcp/dhclient.conf
434  - move /etc/dhcpd.conf to /etc/dhcp/dhcpd.conf
435- update init script header to reference /etc/dhcp/dhcpd.conf
436
437* Wed Jan 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 12:4.1.0-2
438- remove libdhcp4client
439
440* Mon Jan 12 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 12:4.1.0-1
441- new upstream release
442- update patches
443
444* Fri Jun 20 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 12:4.0.0-16
445- new upstream version 4.0.0 based on 4.0.0-15 from Fedora
446- Obsoletes: dhcpcd <= 1.3.22pl4-0vl3
447- changelogs for previous Vine package as follows:
448  - Tue May 22 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2:3.0.4-0vl2
449  - rebuild with new environment
450  - add "-fPIC -fno-strict-aliasing -fvisivility=hidden" to COPTS
451
452  - Thu May 04 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2:3.0.4-0vl1
453  - new upstream release
454  - import some FC patches and upstream patches
455
456  - Fri Feb 20 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1:3.0pl2-6vl1
457  - new upstream version
458  - merged with fedora package.
459    - Wed Mar  3 2002 Seiya Nishizawa <seiya@kugi.kyoto-u.ac.jp>
460    - Fix type for dhcpd.leases
461    - Fri Aug 24 2001 Toru Sagami <sagami@vinelinux.org>
462    - 2.0pl5-6vl0: was ported to Vine with _localstatedir defined as /var
463
464* Fri May 16 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-15
465- Set close-on-exec on dhclient.leases for SELinux (#446632)
466
467* Tue Apr 01 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-14
468- Avoid dhclient crash when run via NetworkManager (#439796)
469
470* Tue Mar 25 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-13
471- Update dhclient-script to handle domain-search correctly (#437840)
472
473* Tue Mar 25 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-12
474- Remove Requires on openldap-server (#432180)
475- Replace CLIENTBINDIR, ETCDIR, DBDIR, and RUNDIR in the man pages with the
476  correct paths
477
478* Wed Feb 13 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-11
479- Add missing newline to usage() screen in dhclient
480
481* Thu Feb 07 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-10
482- Save conf files adding '.predhclient.$interface' to the name (#306381)
483- Only restore conf files on EXPIRE/FAIL/RELEASE/STOP if there are no other
484  dhclient processes running (#306381)
485
486* Wed Feb 06 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-9
487- Match LDAP server option values in stables.c and dhcpd.h (#431003)
488- Fix invalid sprintf() statement in server/ldap.c (#431003)
489
490* Wed Feb 06 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-8
491- Remove invalid fclose() patch
492
493* Tue Feb 05 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-7
494- Don't leak /var/lib/dhclient/dhclient.leases file descriptors (#429890)
495
496* Tue Jan 22 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-6
497- read_function() comes from the LDAP patch, so fix it there
498- Init new struct universe structs in libdhcp4client so we don't crash on
499  multiple DHCP attempts (#428203)
500
501* Thu Jan 17 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-5
502- Patch read_function() to handle size_t from read() correctly (#429207)
503
504* Wed Jan 16 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-4
505- Fix dhclient.lease file parsing problems (#428785)
506- Disable IPv6 support for now as we already ship dhcpv6 (#428987)
507
508* Tue Jan 15 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-3
509- Fix segfault in next_iface4() and next_iface6() (#428870)
510
511* Mon Jan 14 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-2
512- -fvisibility fails me again
513
514* Mon Jan 14 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-1
515- Upgrade to ISC dhcp-4.0.0 (#426634)
516     - first ISC release to incorporate DHCPv6 protocol support
517     - source tree now uses GNU autoconf/automake
518- Removed the libdhcp4client-static package
519
520* Tue Dec 04 2007 David Cantrell <dcantrell@redhat.com> - 12:3.1.0-12
521- Requires line fixes
522
523* Tue Dec 04 2007 David Cantrell <dcantrell@redhat.com> - 12:3.1.0-11
524- Postinstall script fixes
525
526* Mon Nov 19 2007 David Cantrell <dcantrell@redhat.com> - 12:3.1.0-10
527- Remove dhcdbd check from dhcpd init script
528
529* Thu Nov 15 2007 David Cantrell <dcantrell@redhat.com> - 12:3.1.0-9
530- Fix chkconfig lines in dhcpd and dhcrelay init scripts (#384431)
531- Improve preun scriptlet
532
533* Mon Nov 12 2007 David Cantrell <dcantrell@redhat.com> - 12:3.1.0-8
534- Put dhcp.schema in /etc/openldap/schema (#330471)
535- Remove manpages patch and keep modified man pages as Source files
536- Improve dhclient.8 man page to list options in a style consistent
537  with most other man pages on the planet
538- Upgrade to latest dhcp LDAP patch, which brings in a new dhcpd-conf-to-ldap
539  script, updated schema file, and other bug fixes including SSL support for
540  LDAP authentication (#375711)
541- Do not run dhcpd and dhcrelay services by default (#362321)
542
543* Fri Oct 26 2007 David Cantrell <dcantrell@redhat.com> - 12:3.1.0-7
544- libdhcp4client-devel requires openldap-devel
545
546* Thu Oct 25 2007 David Cantrell <dcantrell@redhat.com> - 12:3.1.0-6
547- Rename Makefile.dist to Makefile.libdhcp4client
548- Spec file cleanups
549- Include stdarg.h in libdhcp_control.h
550
551* Thu Oct 25 2007 David Cantrell <dcantrell@redhat.com> - 12:3.1.0-5
552- Remove chkconfig usage for ypbind in dhclient-script (#351211)
553- Combine dhcp-static and dhcp-devel packages since there are no shared
554  libraries offered
555- Remove Requires: openldap-devel on dhcp-devel and libdhcp4client-devel
556- Make libdhcp4client-devel require dhcp-devel (for libdhcp_control.h)
557- Do not make dhcp-devel require the dhcp package, those are independent
558
559* Wed Oct 24 2007 David Cantrell <dcantrell@redhat.com> - 12:3.1.0-4
560- Install libdhcp_control.h to /usr/include/isc-dhcp/libdhcp_control.h
561- Update libdhcp4client patch to use new libdhcp_control.h location
562- Remove __fedora_contrib/ subdirectory in /usr/share/doc/dhcp-3.1.0,
563  install those docs to /usr/share/doc/dhcp-3.1.0
564
565* Wed Oct 24 2007 David Cantrell <dcantrell@redhat.com> - 12:3.1.0-3
566- Remove ISC.Cflags variable from libdhcp4client.pc
567
568* Wed Oct 24 2007 David Cantrell <dcantrell@redhat.com> - 12:3.1.0-2
569- Fix 'restart' mode in init script (#349341)
570
571* Tue Oct 23 2007 David Cantrell <dcantrell@redhat.com> - 12:3.1.0-1
572- Upgrade to ISC dhcp-3.1.0
573- Remove unnecessary /usr/include/dhcp4client/isc_dhcp headers
574- Make sure restorecon is run on /var/lib/dhcpd/dhcpd.leases (#251688)
575- Install dhcp.schema to /etc/openldap/dhcp.schema (#330471)
576
577* Mon Oct 08 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.6-8
578- Init script fixes (#320761)
579- Removed linux.dbus-example script since we aren't using dhcdbd now
580- Remove dhcdbd leftovers from dhclient-script (#306381)
581
582* Wed Sep 26 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.6-7
583- In dhcp.conf.5, explain that if no next-server statement applies to the
584  requesting client, the address 0.0.0.0 is used (#184484).
585
586* Wed Sep 26 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.6-6
587- Init script fixes for dhcpd and dhcrelay (#278601)
588
589* Mon Sep 10 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.6-5
590- Fix typos in ldap.c and correct LDAP macros (#283391)
591
592* Tue Sep 04 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.6-4
593- Do not override manually configured NTP servers in /etc/ntp.conf (#274761)
594
595* Wed Aug 15 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.6-3
596- Remove the -x switch enabling extended new option info.  If given to
597  dhclient now, it's ignored.
598
599* Wed Jul 18 2007 Florian La Roche <laroche@redhat.com> - 12:3.0.6-2
600- use a new macro name vendor -> vvendor to not overwrite the
601  RPMTAG_VENDOR setting
602
603* Tue Jul 10 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.6-1
604- Upgrade to ISC dhcp-3.0.6
605- Remove the -TERM option from killproc command (#245317)
606
607* Wed Jun 20 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-37
608- For init script functions, echo new line after OK or FAIL msg (#244956)
609
610* Fri Jun 15 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-36
611- BOOTP_BROADCAST_ALWAYS is not the same as ATSFP, fixed
612- Added anycast mac support to dhclient for OLPC
613
614* Tue May 22 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-35
615- Disable -fvisibility=hidden for now as it breaks dhcpv4_client() from
616  the shared library (#240804)
617
618* Thu Apr 26 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-34
619- Init script fixes (#237985, #237983)
620- Reference correct scripts in dhclient-script.8 man page (#238036)
621
622* Fri Apr 20 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-33
623- Rename -devel-static packages to -static (#225691)
624
625* Tue Apr 17 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-32
626- Added missing newline on usage() screen in dhclient
627
628* Thu Apr 12 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-31
629- Spec file cleanups (#225691)
630- Put libdhcpctl.a and libomapi.a in dhcp-devel-static package
631- Put libdhcp4client.a in libdhcp4client-devel-static package
632
633* Wed Apr 11 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-30
634- Enable Xen patch again, kernel bits present (#231444)
635
636* Tue Apr 10 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-29
637- Spec file cleanups (#225691)
638
639* Mon Apr 09 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-28
640- Remove Xen patch (#235649, from RHEL-5, doesn't work correctly for Fedora)
641
642* Sun Apr 01 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-27
643- Ensure that Perl and Perl modules are not added as dependencies (#234688)
644- Reorganize patches by feature/bug per packaging guidelines (#225691)
645- Move the following files from patches to source files:
646     linux.dbus-example, linux, Makefile.dist, dhcp4client.h, libdhcp_control.h
647- Compile with -fno-strict-aliasing as ISC coding standards generally don't
648  agree well with gcc 4.x.x
649
650* Wed Mar 21 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-26
651- Fix formatting problems in dhclient man page (#233076).
652
653* Mon Mar 05 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-25
654- Man pages need 0644 permissions (#222572)
655
656* Thu Mar 01 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-24
657- Include contrib/ subdirectory in /usr/share/doc (#230476)
658- Added back Requires for perl since dhcpd-conf-to-ldap needs it (#225691)
659- Put copies of dhcp-options and dhcp-eval man pages in the dhcp and
660  dhclient packages rather than having the elaborate symlink collection
661- Explicitly name man pages in the %%files listings
662- Use the %%{_sysconfdir} and %%{_initrddir} macros (#225691)
663- Use macros for commands in %%build and %%install
664- Split README.ldap, draft-ietf-dhc-ldap-schema-01.txt, and
665  dhcpd-conf-to-ldap.pl out of the LDAP patch
666- Split linux.dbus-example script out of the extended new option info patch
667- Remove unnecessary changes from the Makefile patch
668
669* Wed Feb 28 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-23
670- Update Xen partial checksums patch
671- Remove perl Requires (#225691)
672- Make dhcp-devel depend on dhcp = e:v-r (#225691)
673- libdhcp4client-devel Requires pkgconfig (#225691)
674- Do not add to RPM_OPT_FLAGS, use COPTS variable instead (#225691)
675- Use %%{buildroot} macro instead of RPM_BUILD_ROOT variable (#225691)
676- Preserve timestamps on all installed data files (#225691)
677- Remove dhcp-options.5.gz and dhcp-eval.5.gz symlinking in post (#225691)
678- Use %%defattr(-,root,root,-) (#225691)
679- Do not flag init scripts as %%config in %%files section (#225691)
680
681* Tue Feb 27 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-22
682- Change license field to say ISC
683
684* Sat Feb 17 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-21
685- Obsoletes dhcpcd <= 1.3.22 (#225691)
686
687* Fri Feb 16 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-20
688- Review cleanups (#225691)
689
690* Fri Feb 09 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-19
691- Require openldap-devel on dhcp-devel and libdhcp4client-devel packages
692
693* Thu Feb 08 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-18
694- Fix libdhcp4client visibility _again_ (#198496)
695
696* Thu Feb 08 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-17
697- Remove period from summary line (package review)
698- Use preferred BuildRoot (package review)
699
700* Sun Feb 04 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-16
701- Disable xen-checksums patch for now as it breaks dhclient (#227266)
702- Updated fix-warnings patch
703
704* Sun Feb 04 2007 David Woodhouse <dwmw2@redhat.com> - 12:3.0.5-15
705- Fix broken file reading due to LDAP patch
706
707* Fri Feb 02 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-14
708- Only export the symbols we want in libdhcp4client (#198496)
709
710* Wed Jan 31 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-13
711- Add support for dhcpd(8) to read dhcpd.conf from an LDAP server (#224352)
712- Remove invalid ja_JP.eucJP man pages from /usr/share/doc
713
714* Wed Jan 31 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-12
715- Rebuild
716
717* Tue Jan 30 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-11
718- Remove FORTIFY_SOURCE=0 leftovers from testing last week (whoops)
719
720* Tue Jan 30 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-10
721- Fix Xen networking problems with partial checksums (#221964)
722
723* Mon Jan 29 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-9
724- Remove dhcptables.pl from the source package
725- Mark libres.a symbols hidden (#198496)
726- Set DT_SONAME on libdhcp4client to libdhcp4client-VERSION.so.0
727- Make function definition for dst_hmac_md5_init() match the prototype
728
729* Wed Nov 29 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-8
730- Roll md5 patch in to libdhcp4client patch since it's related
731- Do not overwrite /etc/ntp/step-tickers (#217663)
732- Resolves: rhbz#217663
733
734* Wed Nov 22 2006 Peter Jones <pjones@redhat.com> - 12:3.0.5-7
735- Build the MD5 functions we link against.
736
737* Thu Nov 16 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-6
738- Set permission of libdhcp4client.so.1 to 0755 (#215910)
739
740* Tue Nov 14 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-5
741- Do not link res_query.o in to libdhcp4client (#215501)
742
743* Mon Nov 13 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-4
744- Enable relinquish_timeouts() and cancel_all_timeouts() even when
745  DEBUG_MEMORY_LEAKAGE_ON_EXIT is not defined
746- Add prototypes for b64_pton() and b64_ntop in dst/
747- Move variable declarations and labels around in the fix-warnings patch
748- Expand the list of objects needed for libdhcp4client (#215328)
749- Use libres.a in libdhcp4client since it gives correct minires objects
750- Remove the dhcp options table in C, Perl, Python, and text format (these
751  were reference files added to /usr/share/doc)
752
753* Mon Nov 13 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-3
754- Remove struct universe *universe from envadd_state in the client patch
755- Add struct universe *universe to envadd_state in the enoi patch
756- Add example dbusified dhclient-script in the enoi patch
757
758* Fri Nov 10 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-2
759- Change the way libdhcp4client is compiled (patch main source, create new
760  Makefile rather than copy and patch code after main patches)
761- Fix up problems generating compiler warnings
762- Use 'gcc' for making dependencies
763- Pass -fPIC instead of -fpie/-fPIE in compiler flags
764- Combine the extended new option info changes in to one patch file (makes
765  it easier for outside projects that want to use dhcdbd and NetworkManager)
766
767* Tue Nov 07 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-1
768- Upgrade to ISC dhcp-3.0.5
769
770* Fri Oct 27 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.4-24
771- Put typedef for dhcp_state_e before it's used in libdhcp_control.h (#212612)
772- Remove dhcpctl.3 from minires/Makefile.dist because it's in dhcpctl
773- Remove findptrsize.c and just set compiler flag for ppc64 and s390x
774
775* Sat Oct 14 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.4-23
776- Remove NODEBUGINFO junk from the spec file as well as old/unused code
777- Rolled all 68 patches in to one patch since more than half of them get
778  overridden by later patches anyway.
779
780* Fri Oct 13 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.4-22
781- Send usage() screen in dhclient to stdout rather than the syslog (#210524)
782
783* Mon Sep 11 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.4-21
784- Rebuild (#205505)
785
786* Fri Aug 18 2006 Jesse Keating <jkeating@redhat.com> - 12:3.0.4-20
787- rebuilt with latest binutils to pick up 64K -z commonpagesize on ppc*
788  (#203001)
789
790* Thu Aug 17 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.4-19
791- Fix mkdir problem in libdhcp4client.Makefile
792
793* Thu Aug 17 2006 David Cantrell <dcantrell@redhat.com> - 12:3.0.4-18
794- Fix dhclient on s390x platform (#202911)
795
796* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 12:3.0.4-17.1
797- rebuild
798
799* Wed Jun 28 2006 Peter Jones <pjones@redhat.com> - 12:3.0.4-17
800- export timeout cancellation functions in libdhcp4client
801
802* Wed Jun 28 2006 Florian La Roche <laroche@redhat.com> - 12:3.0.4-16
803- add proper coreutils requires for the scripts
804
805* Thu Jun 22 2006 Peter Jones <pjones@redhat.com> - 12:3.0.4-15
806- Make timeout dispatch code not recurse while traversing a linked
807  list, so it doesn't try to free an entries that have been removed.
808  (bz #195723)
809- Don't patch in a makefile, do it in the spec.
810
811* Thu Jun 08 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-14
812- fix bug 191461: preserve ntp.conf local clock fudge statements
813- fix bug 193047: both dhcp and dhclient need to ship common
814                  man-pages: dhcp-options(5) dhcp-eval(5)
815
816* Tue May 30 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-12
817- Make -R option take effect in per-interface client configs
818
819* Fri May 26 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-10
820- fix bug 193047: allow $METRIC to be specified for dhclient routes
821- add a '-R <request option list>' dhclient argument
822
823* Fri May 26 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-8.1
824- fix a libdhcp4client memory leak (1 strdup) and
825  fill in client->packet.siaddr before bind_lease() for pump
826  nextServer option.
827
828* Fri May 19 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-8
829- Make libdhcp4client a versioned .so (BZ 192146)
830
831* Wed May 17 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-4
832- Enable libdhcp4client build
833
834* Tue May 16 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-2
835- Fix bug 191470: prevent dhcpd writing 8 byte dhcp-lease-time
836                  option in packets on 64-bit platforms
837
838* Sun May 14 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-2
839- Add the libdhcp4client library package for use by the new libdhcp
840  package, which enables dhclient to be invoked by programs in a
841  single process from the library. The normal dhclient code is
842  unmodified by this.
843
844* Mon May 08 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-2
845- Add new dhclient command line argument:
846  -V <vendor-class-identifier>
847
848* Sat May 06 2006 Jason Vas Dias <jvdias@redhat.com> - 12:3.0.4-1
849- Upgrade to upstream version 3.0.4, released Friday 2006-05-05 .
850- Add new dhclient command line arguments:
851  -H <host-name> : parse as dhclient.conf 'send host-name "<host-name>";'
852  -F <fqdn>      : parse as dhclient.conf 'send fqdn.fqdn "<fqdn>";'
853  -T <timeout>   : parse as dhclient.conf 'timeout <timeout>;'
854
855* Thu Mar 02 2006 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-26
856- fix bug 181908: enable dhclient to operate on IBM zSeries z/OS linux guests:
857  o add -I <dhcp-client-identifier> dhclient command line option
858  o add -B "always broadcast" dhclient command line option
859  o add 'bootp-broadcast-always;' dhclient.conf statement
860
861* Mon Feb 20 2006 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-24
862- Apply upstream fix for bug 176615 / ISC RT#15811
863
864* Tue Feb 14 2006 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-22
865- fix bug 181482: resolv.conf not updated on RENEW :
866  since dhcp-3.0.1rc12-RHScript.patch: "$new_domain_servers" should have
867  been "$new_domain_name_servers" :-(
868
869* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 11:3.0.3-21.1.1
870- bump again for double-long bug on ppc(64)
871
872* Mon Feb 06 2006 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-21.1
873- Rebuild for new gcc, glibc and glibc-kernheaders
874
875* Sun Jan 22 2006 Dan Williams <dcbw@redhat.com> - 11:3.0.3-21
876- Fix dhclient-script to use /bin/dbus-send now that all dbus related
877  binaries are in /bin rather than /usr/bin
878
879* Mon Jan 16 2006 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-20
880- fix bug 177845: allow client ip-address as default router
881- fix bug 176615: fix DDNS update when Windows-NT client sends
882                  host-name with trailing nul
883
884* Tue Dec 20 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-18
885- fix bug 176270: allow routers with an octet of 255 in their IP address
886
887* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
888- rebuilt
889
890* Mon Dec 05 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-16
891- fix gcc 4.1 compile warnings (-Werror)
892
893* Fri Nov 19 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-12
894- fix bug 173619: dhclient-script should reconfig on RENEW if
895                  subnet-mask, broadcast-address, mtu, routers, etc.
896                  have changed
897- apply upstream improvements to trailing nul options fix of bug 160655
898
899* Tue Nov 15 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-11
900- Rebuild for FC-5
901- fix bug 167028 - test IBM's unicast bootp patch (from xma@us.ibm.com)
902- fix bug 171312 - silence chkconfig error message if ypbind not installed
903- fix dhcpd.init when -cf arg given to dhcpd
904- make dhcpd init touch /var/lib/dhcpd/dhcpd.leases, not /var/lib/dhcp/dhcpd.leases
905
906* Tue Oct 18 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-10
907- Allow dhclient route metrics to be specified with DHCP options:
908  The dhcp-options(5) man-page states:
909  'option routers ... Routers should be listed in order of preference'
910  and
911  'option static-routes ... are listed in descending order of priority' .
912  No preference / priority could be set with previous dhclient-script .
913  Now, dhclient-script provides:
914  Default Gateway (option 'routers') metrics:
915    Instead of allowing only one default gateway, if more than one router
916    is specified in the routers option, routers following the first router
917    will have a 'metric' of their position in the list (1,...N>1).
918  Option static-routes metrics:
919    If a target appears in the list more than once, routes for duplicate
920    targets will have successively greater metrics, starting at 1.
921
922* Mon Oct 17 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-8
923- further fix for bug 160655 / ISC bug 15293 - upstream patch:
924  do NOT always strip trailing nulls in the dhcpd server
925- handle static-routes option properly in dhclient-script :
926  trailing 0 octets in the 'target' IP specify the class -
927  ie '172.16.0.0 w.x.y.z' specifies '172.16/16 via w.x.y.z'.
928
929* Fri Sep 23 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-7
930- fix bug 169164: separate /var/lib/{dhcpd,dhclient} directories
931- fix bug 167292: update failover port info in dhcpd.conf.5; give
932                  failover ports default values in server/confpars.c
933 
934* Mon Sep 12 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-6
935- fix bug 167273: time-offset should not set timezone by default
936                  tzdata's Etc/* files are named with reverse sign
937                  for hours west - ie. 'GMT+5' is GMT offset -18000seconds.
938
939* Mon Aug 29 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-4
940- fix bug 166926: make dhclient-script handle interface-mtu option
941  make dhclient-script support /etc/dhclient{,-$IF}-{up,down}-hooks scripts
942  to allow easy customization to support other non-default DHCP options -
943  documented in 'man 8 dhclient-script' .
944- handle the 'time-offset' DHCP option, requested by default.
945
946* Tue Aug 23 2005 Jason Vas Dias <jvdias@redhat.com> - 11:3.0.3-3
947- fix bug 160655: strip trailing '\0' bytes from text options before append
948- fix gcc4 compiler warnings ; now compiles with -Werror
949- add RPM_OPT_FLAGS to link as suggested in gcc man-page on '-pie' option
950- change ISC version string to 'V3.0.3-RedHat' at request of ISC
951
952* Tue Aug  9 2005 Jeremy Katz <katzj@redhat.com> - 11:3.0.3-2
953- don't explicitly require 2.2 era kernel, it's fairly overkill at this point
954
955* Fri Jul 29 2005 Jason Vas Dias <jvdias@redhat.com> 11:3.0.3-1
956- Upgrade to upstream version 3.0.3
957- Don't apply the 'default boot file server' patch: legacy
958  dhcp behaviour broke RFC 2131, which requires that the siaddr
959  field only be non-zero if the next-server or tftp-server-name
960  options are specified.
961- Try removing the 1-5 second wait on dhclient startup altogether.
962- fix bug 163367: supply default configuration file for dhcpd
963 
964* Thu Jul 14 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.3rc1-1
965- Upgrade to upstream version 3.0.3rc1
966- fix bug 163203: silence ISC blurb on configtest
967- fix default 'boot file server' value (packet->siaddr):
968  In dhcp-3.0.2(-), this was defaulted to the server address;
969  now it defaults to 0.0.0.0 (a rather silly default!) and
970  must be specified with the 'next-server' option (not the tftp-boot-server
971  option ?!?) which causes PXE boot clients to fail to load anything after
972  the boot file.
973
974* Fri Jul 08 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-14.FC5
975- Allow package to compile with glibc-headers-2.3.5-11 (tr.c's use of __u16)
976
977* Fri May 10 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-14
978- Fix bug 159929: prevent dhclient flooding network on repeated DHCPDECLINE
979- dhclient fast startup:
980   remove dhclient's  random 1-5 second delay on startup if only
981   configuring one interface
982   remove dhclient_script's "sleep 1" on PREINIT
983- fix new gcc-4.0.0-11 compiler warnings for binding_state_t
984
985* Tue May 03 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-12
986- Rebuild for new glibc
987- Fix dhcdbd set for multiple interfaces
988
989* Wed Apr 27 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-11
990- as pointed out by Peter Jones, dhclient-script spews
991- 'chkconfig: Usage' if run in init state 1 (runlevel returns "unknown".)
992- this is now corrected.
993
994* Mon Apr 25 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-10
995- dhclient-script dhcdbd extensions.
996- Tested to have no effect unless dhcdbd invokes dhclient.
997
998* Thu Apr 21 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-9
999- bugs 153244 & 155143 are now fixed with SELinux policy;
1000  autotrans now works for dhcpc_t, so restorecons are not required,
1001  and dhclient runs OK under dhcpc_t with SELinux enforcing.
1002- fix bug 155506: 'predhclien' typo (emacs!).
1003
1004* Mon Apr 18 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-8
1005- Fix bugs 153244 & 155143:
1006      o restore dhclient-script 'restorecon's
1007      o give dhclient and dhclient-script an exec context of
1008        'system_u:object_r:sbin_t' that allows them to run
1009        domainname / hostname and to update configuration files
1010        in dhclient post script.
1011- Prevent dhclient emitting verbose ISC 'blurb' on error exit in -q mode
1012
1013* Mon Apr 04 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-7
1014- Add '-x' "extended option environment" dhclient argument:
1015-  When -x option given to dhclient:
1016-    dhclient enables arbitrary option processing by writing information
1017-    about user or vendor defined option space options to environment.
1018-
1019- fix bug 153244: dhclient should not use restorecon
1020- fix bug 151023: dhclient no 'headers & libraries'
1021- fix bug 149780: add 'DHCLIENT_IGNORE_GATEWAY' variable
1022- remove all usage of /sbin/route from dhclient-script
1023
1024* Thu Mar 24 2005 Florian La Roche <laroche@redhat.com>
1025- add "exit 0" to post script
1026
1027* Mon Mar 07 2005 Jason Vas Dias <jvdias@redhat.com> 10.3.0.2-3
1028- rebuild for gcc4/glibc-2.3.4-14; fix bad memset
1029
1030* Thu Feb 24 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-2
1031- Fix bug 143640: do not allow more than one dhclient to configure an interface
1032
1033* Mon Feb 21 2005 Jason Vas Dias <jvdias@redhat.com> 10:3.0.2-1
1034- Upgrade to ISC 3.0.2 Final Release (documentation change only).
1035
1036* Tue Feb 14 2005 Jason Vas Dias <jvdias@redhat.com> 8:3.0.2rc3-8
1037- Add better execshield security link options
1038- fix dhcpd.init when no /etc/dhcpd.conf exists and -cf in DHCPDARGS
1039
1040* Mon Feb 14 2005 Jason Vas Dias <jvdias@redhat.com> 8:3.0.2rc3-4
1041- make dhclient-script TIMEOUT mode do exactly the same configuration
1042- as BOUND / RENEW / REBIND / REBOOT if router ping succeeds
1043
1044* Mon Feb 14 2005 Jason Vas Dias <jvdias@redhat.com> 3.0.2rc3-4
1045- fix bug 147926: dhclient-script should do restorecon for modified conf files
1046- optimize execshield protection
1047
1048* Thu Feb 10 2005 Jason Vas Dias <jvdias@redhat.com> 8.3.0.4rc3-3
1049- fix bug 147375: dhcpd heap corruption on 32-bit 'subnet' masks
1050- fix bug 147502: dhclient should honor GATEWAYDEV and GATEWAY settings
1051- fix bug 146600: dhclient's timeout mode ping should use -I
1052- fix bug 146524: dhcpd.init should discard dhcpd's initial output message
1053- fix bug 147739: dhcpd.init configtest should honor -cf in DHCPDARGS
1054
1055* Mon Jan 24 2005 Jason Vas Dias <jvdias@redhat.com> 8:3.0.2rc3-2
1056- fix bug 145997: allow hex 32-bit integers in user specified options
1057
1058* Thu Jan 06 2005 Jason Vas Dias <jvdias@redhat.com> 8:3.0.2rc3-1
1059- still need an epoch to get past nvre test
1060
1061* Thu Jan 06 2005 Jason Vas Dias <jvdias@redhat.com> 3.0.2rc3-1
1062- fix bug 144417: much improved dhclient-script
1063
1064* Thu Jan 06 2005 Jason Vas Dias <jvdias@redhat.com> 3.0.2rc3-1
1065- Upgrade to latest release from ISC, which includes most of our
1066- recent patches anyway.
1067
1068* Thu Jan 06 2005 Jason Vas Dias <jvdias@redhat.com> 7:3.0.1-17
1069- fix bug 144250: gcc-3.4.3-11 is broken :
1070- log_error ("Lease with bogus binding state: %%d size: %%d",
1071-   comp -> binding_state,
1072-   sizeof(comp->binding_state));
1073- prints:    'Lease with bogus binding state: 257 1'    !
1074- compiling with gcc33 (compat-gcc-8-3.3.4.2 fixes for now).
1075
1076* Mon Jan 03 2005 Jason Vas Dias <jvdias@redhat.com> 7:3.0.1-16
1077- fix bug 143704: dhclient -r does not work if lease held by
1078- dhclient run from ifup . dhclient will now look for the pid
1079- files created by ifup.
1080
1081* Wed Nov 17 2004 Jason Vas Dias <jvdias@redhat.com> 7:3.0.1-14
1082- NTP: fix bug 139715: merge in new ntp servers only rather than replace
1083- all the ntp configuration files; restart ntpd if configuration changed.
1084
1085* Tue Nov 16 2004 Jason Vas Dias <jvdias@redhat.com> 7:3.0.1-12
1086- fix bug 138181 & bug 139468: do not attempt to listen/send on
1087-     unconfigured  loopback, point-to-point or non-broadcast
1088-     interfaces (don't generate annoying log messages)
1089- fix bug 138869: dhclient-script: check if '$new_routers' is
1090-     empty before doing 'set $new_routers;...;ping ... $1'
1091
1092* Wed Oct 06 2004 Jason Vas Dias <jvdias@redhat.com> 7:3.0.1-11
1093- dhcp-3.0.2b1 came out today. A diff of the 'ack_lease' function
1094- Dave Hankins and I patched exposed a missing '!' on an if clause
1095- that got dropped with the 'new-host' patch. Replacing the '!'.
1096- Also found one missing host_dereference.
1097
1098* Wed Oct 06 2004 Jason Vas Dias <jvdias@redhat.com> 7:3.0.1-10
1099- clean-up last patch: new-host.patch adds host_reference(host)
1100- without host_dereference(host) before returns in ack_lease
1101- (dhcp-3.0.1-host_dereference.patch)
1102 
1103* Mon Sep 27 2004 Jason Vas Dias <jvdias@redhat.com> 7:3.0.1-9
1104- Fix bug 133522:
1105- PXE Boot clients with static leases not given 'file' option
1106- 104 by server - PXE booting was disabled for 'fixed-address'
1107- clients.
1108
1109* Fri Sep 10 2004 Jason Vas Dias <jvdias@redhat.com> 7:3.0.1-8
1110- Fix bug 131212:
1111- If "deny booting" is defined for some group of hosts,
1112- then after one of those hosts is denied booting, all
1113- hosts are denied booting, because of a pointer not being
1114- cleared in the lease record.
1115- An upstream patch was obtained which will be in dhcp-3.0.2.
1116
1117* Mon Aug 16 2004 Jason Vas Dias <jvdias@redhat.com> 7:3.0.1-7
1118- Forward DNS update by client was disabled by a bug that I
1119- found in code where 'client->sent_options' was being
1120- freed too early.
1121- Re-enabled it after contacting upstream maintainer
1122- who confirmed that this was a bug (bug #130069) -
1123- submitted patch dhcp-3.0.1.preserve-sent-options.patch.
1124- Upstream maintainer informs me this patch will be in dhcp-3.0.2 .
1125
1126* Tue Aug 3  2004 Jason Vas Dias <jvdias@redhat.com> 6:3.0.1-6
1127- Allow 2.0 kernels to obtain default gateway via dhcp
1128
1129* Mon Aug 2  2004 Jason Vas Dias <jvdias@redhat.com> 5:3.0.1-5
1130- Invoke 'change_resolv_conf' function to change resolv.conf
1131
1132* Fri Jul 16 2004 Jason Vas Dias <jvdias@redhat.com> 3:3.0.1
1133- Upgraded to new ISC 3.0.1 version
1134
1135* Thu Jun 24 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc14-5
1136- Allow dhclient-script to continue without a config file.
1137- It will use default values.
1138
1139* Wed Jun 23 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc14-4
1140- fix inherit-leases patch
1141
1142* Tue Jun 22 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc14-2
1143- Turn on inherit-leases patch
1144
1145* Tue Jun 22 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc14-1
1146- User kernelversion instead of uname-r
1147- Update to latest package from ISC
1148- Remove inherit-leases patch for now.
1149
1150* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
1151- rebuilt
1152
1153* Thu Jun 10 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc13-1
1154- Update to latest package from ISC
1155
1156* Thu Jun 10 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc12-9
1157- add route back in after route up call
1158
1159* Wed Jun 9 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc12-8
1160- add alex's dhcp-3.0.1rc12-inherit-leases.patch patch
1161
1162* Tue Jun  8 2004 Bill Nottingham <notting@redhat.com> 1:3.0.1rc12-7
1163- set device on default gateway route
1164
1165* Mon May 17 2004 Thomas Woerner <twoerner@redhat.com> 1:3.0.1rc12-6
1166- compiling dhcpd PIE
1167
1168* Thu Mar 25 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc12-5
1169- Add static routes patch to dhclient-script
1170
1171* Wed Mar 25 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc12-4
1172- Fix init to check config during restart
1173
1174* Wed Mar 24 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0.1rc12-3
1175- Fix init script to create leases file if missing
1176
1177* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
1178- rebuilt
1179
1180* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
1181- rebuilt
1182
1183* Wed Jan 21 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.20
1184- Fix initialization of memory to prevent compiler error
1185
1186* Mon Jan 5 2004 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.19
1187- Close leaseFile before exec, to fix selinux error message
1188
1189* Mon Dec 29 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.18
1190- Add BuildRequires groff
1191- Replace resolv.conf if renew and data changes
1192
1193* Sun Nov 30 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.17
1194- Add obsoletes dhcpcd
1195
1196* Wed Oct 8 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.16
1197- Fix location of ntp driftfile
1198
1199* Fri Sep 5 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.15
1200- Bump Release
1201
1202* Fri Sep 5 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.14
1203- Add div0 patch
1204
1205* Wed Aug 20 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.13
1206- Add SEARCH to client script
1207
1208* Wed Aug 20 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.12
1209- Bump Release
1210
1211* Wed Aug 20 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.11
1212- Add configtest
1213
1214* Fri Aug 1 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.10
1215- increment for base
1216
1217* Fri Aug 1 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.9
1218- Don't update resolv.conf on renewals
1219
1220* Tue Jul  29 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.8
1221- increment for base
1222
1223* Tue Jul  29 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.7
1224- Fix name of driftfile
1225
1226* Tue Jul  29 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.6
1227- increment for base
1228
1229* Tue Jul  29 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.5
1230- Change dhcrelay script to check DHCPSERVERS
1231
1232* Mon Jul  7 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.4
1233- increment for base
1234
1235* Mon Jul  7 2003 Dan Walsh <dwalsh@redhat.com> 1:3.0pl2-6.3
1236- Fix dhclient-script to support PEERNTP and PEERNIS flags.
1237- patch submitted by aoliva@redhat.com
1238
1239* Sun Jun  8 2003 Tim Powers <timp@redhat.com> 1:3.0pl2-6.1
1240- add epoch to dhcp-devel versioned requires on dhcp
1241- build for RHEL
1242
1243* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
1244- rebuilt
1245
1246* Tue May 27 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl2-5
1247- Fix memory leak in parser.
1248
1249* Mon May 19 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl2-4
1250- Change Rev for RHEL
1251
1252* Mon May 19 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl2-3
1253- Change example to not give out 255 address.
1254
1255* Tue Apr 29 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl2-2
1256- Change Rev for RHEL
1257
1258* Mon Apr 28 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl2-1
1259- upgrade to 3.0pl2
1260
1261* Wed Mar 26 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-26
1262- add usage for dhcprelay -c
1263- add man page for dhcprelay -c
1264
1265* Fri Mar 7 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-25
1266- Fix man dhcpd.conf man page
1267
1268* Tue Mar 4 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-24
1269- Fix man dhcpctl.3 page
1270
1271* Mon Feb 3 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-23
1272- fix script to handle ntp.conf correctly
1273
1274* Thu Jan 29 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-22
1275- Increment release to add to 8.1
1276
1277* Wed Jan 29 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-21
1278- Implement max hops patch
1279
1280* Wed Jan 29 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-20
1281- It has now been decided to just have options within dhclient kit
1282
1283* Sun Jan 26 2003 Florian La Roche <Florian.LaRoche@redhat.de>
1284- add defattr() to have files not owned by root
1285
1286* Fri Jan 24 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-17
1287- require kernel version
1288
1289* Fri Jan 24 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-16
1290- move dhcp-options to separate package
1291
1292* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
1293- rebuilt
1294
1295* Thu Jan 9 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-15
1296- eliminate dhcp-options from dhclient in order to get errata out
1297
1298* Wed Jan 8 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-14
1299- VU#284857 - ISC DHCPD minires library contains multiple buffer overflows
1300
1301* Mon Jan 6 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-13
1302- Fix when ntp is not installed.
1303
1304* Mon Jan 6 2003 Dan Walsh <dwalsh@redhat.com> 3.0pl1-12
1305- Fix #73079 (dhcpctl man page)
1306
1307* Thu Nov 14 2002 Elliot Lee <sopwith@redhat.com> 3.0pl1-11
1308- Use generic PTRSIZE_64BIT detection instead of ifarch.
1309
1310* Thu Nov 14 2002 Preston Brown <pbrown@redhat.com> 3.0pl1-10
1311- fix parsing of command line args in dhclient.  It was missing a few.
1312
1313* Mon Oct 07 2002 Florian La Roche <Florian.LaRoche@redhat.de>
1314- work on 64bit archs
1315
1316* Wed Aug 28 2002 Elliot Lee <sopwith@redhat.com> 3.0pl1-9
1317- Fix #72795
1318
1319* Mon Aug 26 2002 Elliot Lee <sopwith@redhat.com> 3.0pl1-8
1320- More #68650 (modify requested options)
1321- Fix #71453 (dhcpctl man page) and #71474 (include libdst.a) and
1322  #72622 (hostname setting)
1323
1324* Thu Aug 15 2002 Elliot Lee <sopwith@redhat.com> 3.0pl1-7
1325- More #68650 (modify existing patch to also set NIS domain)
1326
1327* Tue Aug 13 2002 Elliot Lee <sopwith@redhat.com> 3.0pl1-6
1328- Patch102 (dhcp-3.0pl1-dhcpctlman-69731.patch) to fix #69731
1329
1330* Tue Aug 13 2002 Elliot Lee <sopwith@redhat.com> 3.0pl1-5
1331- Patch101 (dhcp-3.0pl1-dhhostname-68650.patch) to fix #68650
1332
1333* Fri Jul 12 2002 Elliot Lee <sopwith@redhat.com> 3.0pl1-4
1334- Fix unaligned accesses when decoding a UDP packet
1335
1336* Thu Jul 11 2002 Elliot Lee <sopwith@redhat.com> 3.0pl1-3
1337- No apparent reason for the dhclient -> dhcp dep mentioned in #68001,
1338  so removed it
1339
1340* Wed Jun 27 2002 David Sainty <saint@redhat.com> 3.0pl1-2
1341- Move dhclient.conf.sample from dhcp to dhclient
1342
1343* Mon Jun 25 2002 David Sainty <saint@redhat.com> 3.0pl1-1
1344- Change to dhclient, dhcp, dhcp-devel packaging
1345- Move to 3.0pl1, do not strip binaries
1346- Drop in sysconfig-enabled dhclient-script
1347
1348* Thu May 23 2002 Tim Powers <timp@redhat.com>
1349- automated rebuild
1350
1351* Sat Jan 26 2002 Florian La Roche <Florian.LaRoche@redhat.de>
1352- prereq chkconfig
1353
1354* Tue Jan 22 2002 Elliot Lee <sopwith@redhat.com> 3.0-5
1355- Split headers/libs into a devel subpackage (#58656)
1356
1357* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
1358- automated rebuild
1359
1360* Fri Dec 28 2001 Elliot Lee <sopwith@redhat.com> 3.0-3
1361- Fix the #52856 nit.
1362- Include dhcrelay scripts from #49186
1363
1364* Thu Dec 20 2001 Elliot Lee <sopwith@redhat.com> 3.0-2
1365- Update to 3.0, include devel files installed by it (as part of the main
1366  package).
1367
1368* Sun Aug 26 2001 Elliot Lee <sopwith@redhat.com> 2.0pl5-8
1369- Fix #26446
1370
1371* Mon Aug 20 2001 Elliot Lee <sopwith@redhat.com>
1372- Fix #5405 for real - it is dhcpd.leases not dhcp.leases.
1373
1374* Mon Jul 16 2001 Elliot Lee <sopwith@redhat.com>
1375- /etc/sysconfig/dhcpd
1376- Include dhcp.leases file (#5405)
1377
1378* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
1379- Bump release + rebuild.
1380
1381* Wed Feb 14 2001 Tim Waugh <twaugh@redhat.com>
1382- Fix initscript typo (bug #27624).
1383
1384* Wed Feb  7 2001 Trond Eivind Glomsrød <teg@redhat.com>
1385- Improve spec file i18n
1386
1387* Mon Feb  5 2001 Bernhard Rosenkraenzer <bero@redhat.com>
1388- i18nize init script (#26084)
1389
1390* Sun Sep 10 2000 Florian La Roche <Florian.LaRoche@redhat.de>
1391- update to 2.0pl5
1392- redo buildroot patch
1393
1394* Wed Aug 30 2000 Matt Wilson <msw@redhat.com>
1395- rebuild to cope with glibc locale binary incompatibility, again
1396
1397* Mon Aug 14 2000 Preston Brown <pbrown@redhat.com>
1398- check for existence of /var/lib/dhcpd.leases in initscript before starting
1399
1400* Wed Jul 19 2000 Jakub Jelinek <jakub@redhat.com>
1401- rebuild to cope with glibc locale binary incompatibility
1402
1403* Sat Jul 15 2000 Bill Nottingham <notting@redhat.com>
1404- move initscript back
1405
1406* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
1407- automatic rebuild
1408
1409* Fri Jul  7 2000 Florian La Roche <Florian.LaRoche@redhat.com>
1410- /etc/rc.d/init.d -> /etc/init.d
1411- fix /var/state/dhcp -> /var/lib/dhcp
1412
1413* Fri Jun 16 2000 Preston Brown <pbrown@redhat.com>
1414- condrestart for initscript, graceful upgrades.
1415
1416* Thu Feb 03 2000 Erik Troan <ewt@redhat.com>
1417- gzipped man pages
1418- marked /etc/rc.d/init.d/dhcp as a config file
1419
1420* Mon Jan 24 2000 Jakub Jelinek <jakub@redhat.com>
1421- fix booting of JavaStations
1422  (reported by Pete Zaitcev <zaitcev@metabyte.com>).
1423- fix SIGBUS crashes on SPARC (apparently gcc is too clever).
1424
1425* Fri Sep 10 1999 Bill Nottingham <notting@redhat.com>
1426- chkconfig --del in %%preun, not %%postun
1427
1428* Mon Aug 16 1999 Bill Nottingham <notting@redhat.com>
1429- initscript munging
1430
1431* Fri Jun 25 1999 Jeff Johnson <jbj@redhat.com>
1432- update to 2.0.
1433
1434* Fri Jun 18 1999 Bill Nottingham <notting@redhat.com>
1435- don't run by default
1436
1437* Wed Jun  2 1999 Jeff Johnson <jbj@redhat.com>
1438- update to 2.0b1pl28.
1439
1440* Tue Apr 06 1999 Preston Brown <pbrown@redhat.com>
1441- strip binaries
1442
1443* Mon Apr 05 1999 Cristian Gafton <gafton@redhat.com>
1444- copy the source file in prep, not move
1445
1446* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
1447- auto rebuild in the new build environment (release 4)
1448
1449* Mon Jan 11 1999 Erik Troan <ewt@redhat.com>
1450- added a sample dhcpd.conf file
1451- we don't need to dump rfc's in /usr/doc
1452
1453* Sun Sep 13 1998 Cristian Gafton <gafton@redhat.com>
1454- modify dhcpd.init to exit if /etc/dhcpd.conf is not present
1455
1456* Sat Jun 27 1998 Jeff Johnson <jbj@redhat.com>
1457- Upgraded to 2.0b1pl6 (patch1 no longer needed).
1458
1459* Thu Jun 11 1998 Erik Troan <ewt@redhat.com>
1460- applied patch from Chris Evans which makes the server a bit more paranoid
1461  about dhcp requests coming in from the wire
1462
1463* Mon Jun 01 1998 Erik Troan <ewt@redhat.com>
1464- updated to dhcp 2.0b1pl1
1465- got proper man pages in the package
1466
1467* Tue Mar 31 1998 Erik Troan <ewt@redhat.com>
1468- updated to build in a buildroot properly
1469- don't package up the client, as it doens't work very well <sigh>
1470
1471* Tue Mar 17 1998 Bryan C. Andregg <bandregg@redhat.com>
1472- Build rooted and corrected file listing.
1473
1474* Mon Mar 16 1998 Mike Wangsmo <wanger@redhat.com>
1475- removed the actual inet.d links (chkconfig takes care of this for us)
1476  and made the %%postun section handle upgrades.
1477
1478* Mon Mar 16 1998 Bryan C. Andregg <bandregg@redhat.com>
1479- First package.
Note: See TracBrowser for help on using the repository browser.