Blame SPECS/dhcp.spec

df4638
# SystemTap support is disabled by default
df4638
%{!?sdt:%global sdt 0}
df4638
df4638
#http://lists.fedoraproject.org/pipermail/devel/2011-August/155358.html
df4638
%global _hardened_build 1
df4638
df4638
# Where dhcp configuration files are stored
df4638
%global dhcpconfdir %{_sysconfdir}/dhcp
df4638
df4638
df4638
%global prever b1
df4638
#global patchver P1
df4638
%global DHCPVERSION %{version}%{?prever}%{?patchver:-%{patchver}}
df4638
df4638
Summary:  Dynamic host configuration protocol software
df4638
Name:     dhcp
df4638
Version:  4.4.2
df4638
Release:  15.b1%{?dist}
df4638
df4638
# NEVER CHANGE THE EPOCH on this package.  The previous maintainer (prior to
df4638
# dcantrell maintaining the package) made incorrect use of the epoch and
df4638
# that's why it is at 12 now.  It should have never been used, but it was.
df4638
# So we are stuck with it.
df4638
Epoch:    12
df4638
License:  ISC
df4638
Url:      https://www.isc.org/dhcp/
df4638
Source0:  ftp://ftp.isc.org/isc/dhcp/%{DHCPVERSION}/dhcp-%{DHCPVERSION}.tar.gz
df4638
Source1:  dhclient-script
df4638
Source2:  README.dhclient.d
df4638
Source3:  11-dhclient
df4638
Source5:  56dhclient
df4638
Source6:  dhcpd.service
df4638
Source7:  dhcpd6.service
df4638
Source8:  dhcrelay.service
df4638
df4638
Patch1 : 0001-change-bug-url.patch
df4638
Patch2 : 0002-additional-dhclient-options.patch
df4638
Patch3 : 0003-Handle-releasing-interfaces-requested-by-sbin-ifup.patch
df4638
Patch4 : 0004-Support-unicast-BOOTP-for-IBM-pSeries-systems-and-ma.patch
df4638
Patch5 : 0005-Change-default-requested-options.patch
df4638
Patch6 : 0006-Various-man-page-only-fixes.patch
df4638
Patch7 : 0007-Change-paths-to-conform-to-our-standards.patch
df4638
Patch8 : 0008-Make-sure-all-open-file-descriptors-are-closed-on-ex.patch
df4638
Patch9 : 0009-Fix-garbage-in-format-string-error.patch
df4638
Patch10 : 0010-Handle-null-timeout.patch
df4638
Patch11 : 0011-Drop-unnecessary-capabilities.patch
df4638
Patch12 : 0012-RFC-3442-Classless-Static-Route-Option-for-DHCPv4-51.patch
df4638
Patch13 : 0013-DHCPv6-over-PPP-support-626514.patch
df4638
Patch14 : 0014-IPoIB-support-660681.patch
df4638
Patch15 : 0015-Add-GUID-DUID-to-dhcpd-logs-1064416.patch
df4638
Patch16 : 0016-Turn-on-creating-sending-of-DUID.patch
df4638
Patch17 : 0017-Send-unicast-request-release-via-correct-interface.patch
df4638
Patch18 : 0018-No-subnet-declaration-for-iface-should-be-info-not-e.patch
df4638
Patch19 : 0019-dhclient-write-DUID_LLT-even-in-stateless-mode-11563.patch
df4638
Patch20 : 0020-Discover-all-hwaddress-for-xid-uniqueness.patch
df4638
Patch21 : 0021-Load-leases-DB-in-non-replay-mode-only.patch
df4638
Patch22 : 0022-dhclient-make-sure-link-local-address-is-ready-in-st.patch
df4638
Patch23 : 0023-option-97-pxe-client-id.patch
df4638
Patch24 : 0024-Detect-system-time-changes.patch
df4638
Patch25 : 0025-bind-Detect-system-time-changes.patch
df4638
Patch26 : 0026-Add-dhclient-5-B-option-description.patch
df4638
Patch27:  0027-Add-missed-sd-notify-patch-to-manage-dhcpd-with-syst.patch
df4638
Patch28:  0028-Fix-for-CVE-2021-25217.patch
df4638
Patch29:  0029-Use-system-getaddrinfo-for-dhcp.patch
df4638
df4638
df4638
BuildRequires: autoconf
df4638
BuildRequires: automake
df4638
BuildRequires: make
df4638
BuildRequires: libtool
df4638
BuildRequires: openldap-devel
df4638
# --with-ldap-gssapi
df4638
BuildRequires: krb5-devel
df4638
BuildRequires: libcap-ng-devel
df4638
# https://fedorahosted.org/fpc/ticket/502#comment:3
df4638
BuildRequires: systemd systemd-devel
df4638
# dhcp-sd_notify.patch
df4638
BuildRequires: pkgconfig(libsystemd)
df4638
%if ! 0%{?_module_build}
df4638
BuildRequires: doxygen
df4638
%endif
df4638
%if %{sdt}
df4638
BuildRequires: systemtap-sdt-devel
df4638
%global tapsetdir    /usr/share/systemtap/tapset
df4638
%endif
df4638
df4638
# In _docdir we ship some perl scripts and module from contrib subdirectory.
df4638
# Because nothing under _docdir is allowed to "require" anything,
df4638
# prevent _docdir from being scanned. (#674058)
df4638
%filter_requires_in %{_docdir}
df4638
%{filter_setup}
df4638
df4638
%description
df4638
DHCP (Dynamic Host Configuration Protocol)
df4638
df4638
%package server
df4638
Summary: Provides the ISC DHCP server
df4638
Requires: %{name}-common = %{epoch}:%{version}-%{release}
df4638
Requires(pre): shadow-utils
df4638
Requires(post): coreutils grep sed
df4638
Requires(post): systemd
df4638
Requires(preun): systemd
df4638
Requires(postun): systemd
df4638
df4638
%description server
df4638
DHCP (Dynamic Host Configuration Protocol) is a protocol which allows
df4638
individual devices on an IP network to get their own network
df4638
configuration information (IP address, subnetmask, broadcast address,
df4638
etc.) from a DHCP server. The overall purpose of DHCP is to make it
df4638
easier to administer a large network.
df4638
df4638
This package provides the ISC DHCP server.
df4638
df4638
%package relay
df4638
Summary: Provides the ISC DHCP relay agent
df4638
Requires: %{name}-common = %{epoch}:%{version}-%{release}
df4638
Requires(post): grep sed
df4638
Requires(post): systemd
df4638
Requires(preun): systemd
df4638
Requires(postun): systemd
df4638
df4638
%description relay
df4638
DHCP (Dynamic Host Configuration Protocol) is a protocol which allows
df4638
individual devices on an IP network to get their own network
df4638
configuration information (IP address, subnetmask, broadcast address,
df4638
etc.) from a DHCP server. The overall purpose of DHCP is to make it
df4638
easier to administer a large network.
df4638
df4638
This package provides the ISC DHCP relay agent.
df4638
df4638
df4638
%package client
df4638
Summary: Provides the ISC DHCP client daemon and dhclient-script
df4638
Provides: dhclient = %{epoch}:%{version}-%{release}
df4638
Obsoletes: dhclient < %{epoch}:%{version}-%{release}
df4638
# dhclient-script requires:
df4638
Requires: coreutils gawk grep ipcalc iproute iputils sed systemd
df4638
Requires: %{name}-common = %{epoch}:%{version}-%{release}
df4638
# Old NetworkManager expects the dispatcher scripts in a different place
df4638
Conflicts: NetworkManager < 1.20
df4638
df4638
%description client
df4638
DHCP (Dynamic Host Configuration Protocol) is a protocol which allows
df4638
individual devices on an IP network to get their own network
df4638
configuration information (IP address, subnetmask, broadcast address,
df4638
etc.) from a DHCP server. The overall purpose of DHCP is to make it
df4638
easier to administer a large network.
df4638
df4638
This package provides the ISC DHCP client.
df4638
df4638
%package common
df4638
Summary: Common files used by ISC dhcp client, server and relay agent
df4638
BuildArch: noarch
df4638
Obsoletes: dhcp-libs < %{epoch}:%{version}
df4638
df4638
df4638
df4638
%description common
df4638
DHCP (Dynamic Host Configuration Protocol) is a protocol which allows
df4638
individual devices on an IP network to get their own network
df4638
configuration information (IP address, subnetmask, broadcast address,
df4638
etc.) from a DHCP server. The overall purpose of DHCP is to make it
df4638
easier to administer a large network.
df4638
df4638
This package provides common files used by dhcp and dhclient package.
df4638
df4638
%package libs-static
df4638
Summary: Shared libraries used by ISC dhcp client and server
df4638
Provides: %{name}-libs%{?_isa} =  %{epoch}:%{version}-%{release}
df4638
Provides: %{name}-libs =  %{epoch}:%{version}-%{release}
df4638
Provides: bundled(bind-export-libs)
df4638
Provides: bundled(bind)
df4638
df4638
%description libs-static
df4638
This package contains shared libraries used by ISC dhcp client and server
df4638
df4638
df4638
%package devel
df4638
Summary: Development headers and libraries for interfacing to the DHCP server
df4638
Requires: %{name}-libs%{?_isa} = %{epoch}:%{version}-%{release}
df4638
df4638
%description devel
df4638
Header files and API documentation for using the ISC DHCP libraries.  The
df4638
libdhcpctl and libomapi static libraries are also included in this package.
df4638
df4638
%if ! 0%{?_module_build}
df4638
%package devel-doc
df4638
Summary: Developer's Guide for ISC DHCP
df4638
Requires: %{name}-libs = %{epoch}:%{version}-%{release}
df4638
BuildArch: noarch
df4638
df4638
%description devel-doc
df4638
This documentation is intended for developers, contributors and other
df4638
programmers that are interested in internal operation of the code.
df4638
This package contains doxygen-generated documentation.
df4638
%endif
df4638
df4638
%prep
df4638
%setup -n dhcp-%{DHCPVERSION}
df4638
pushd bind
df4638
tar -xvf bind.tar.gz
df4638
ln -s bind-9* bind
df4638
popd
df4638
%autopatch -p1 
df4638
df4638
# Update paths in all man pages
df4638
for page in client/dhclient.conf.5 client/dhclient.leases.5 \
df4638
            client/dhclient-script.8 client/dhclient.8 ; do
df4638
    sed -i -e 's|CLIENTBINDIR|%{_sbindir}|g' \
df4638
                -e 's|RUNDIR|%{_localstatedir}/run|g' \
df4638
                -e 's|DBDIR|%{_localstatedir}/lib/dhclient|g' \
df4638
                -e 's|ETCDIR|%{dhcpconfdir}|g' $page
df4638
done
df4638
df4638
for page in server/dhcpd.conf.5 server/dhcpd.leases.5 server/dhcpd.8 ; do
df4638
    sed -i -e 's|CLIENTBINDIR|%{_sbindir}|g' \
df4638
                -e 's|RUNDIR|%{_localstatedir}/run|g' \
df4638
                -e 's|DBDIR|%{_localstatedir}/lib/dhcpd|g' \
df4638
                -e 's|ETCDIR|%{dhcpconfdir}|g' $page
df4638
done
df4638
df4638
sed -i -e 's|/var/db/|%{_localstatedir}/lib/dhcpd/|g' contrib/dhcp-lease-list.pl
df4638
df4638
## FIXME drop unused bind components 
df4638
df4638
%build
df4638
#libtoolize --copy --force
df4638
autoreconf --verbose --force --install
df4638
df4638
CFLAGS="%{optflags} -fno-strict-aliasing -fcommon" \
df4638
%configure \
df4638
    --with-srv-lease-file=%{_localstatedir}/lib/dhcpd/dhcpd.leases \
df4638
    --with-srv6-lease-file=%{_localstatedir}/lib/dhcpd/dhcpd6.leases \
df4638
    --with-cli-lease-file=%{_localstatedir}/lib/dhclient/dhclient.leases \
df4638
    --with-cli6-lease-file=%{_localstatedir}/lib/dhclient/dhclient6.leases \
df4638
    --with-srv-pid-file=%{_localstatedir}/run/dhcpd.pid \
df4638
    --with-srv6-pid-file=%{_localstatedir}/run/dhcpd6.pid \
df4638
    --with-cli-pid-file=%{_localstatedir}/run/dhclient.pid \
df4638
    --with-cli6-pid-file=%{_localstatedir}/run/dhclient6.pid \
df4638
    --with-relay-pid-file=%{_localstatedir}/run/dhcrelay.pid \
df4638
    --with-ldap \
df4638
    --with-ldapcrypto \
df4638
    --with-ldap-gssapi \
df4638
    --enable-log-pid \
df4638
%if %{sdt}
df4638
    --enable-systemtap \
df4638
    --with-tapset-install-dir=%{tapsetdir} \
df4638
%endif
df4638
    --enable-paranoia --enable-early-chroot \
df4638
    --enable-binary-leases \
df4638
    --with-systemd
df4638
make -j1
df4638
df4638
%if ! 0%{?_module_build}
df4638
pushd doc
df4638
make %{?_smp_mflags} devel
df4638
popd
df4638
%endif
df4638
df4638
%install
df4638
make DESTDIR=%{buildroot} install %{?_smp_mflags}
df4638
df4638
# We don't want example conf files in /etc
df4638
rm -f %{buildroot}%{_sysconfdir}/dhclient.conf.example
df4638
rm -f %{buildroot}%{_sysconfdir}/dhcpd.conf.example
df4638
df4638
# dhclient-script
df4638
install -D -p -m 0755 %{SOURCE1} %{buildroot}%{_sbindir}/dhclient-script
df4638
df4638
# README.dhclient.d
df4638
install -p -m 0644 %{SOURCE2} .
df4638
df4638
# Empty directory for dhclient.d scripts
df4638
mkdir -p %{buildroot}%{dhcpconfdir}/dhclient.d
df4638
df4638
# NetworkManager dispatcher script
df4638
mkdir -p %{buildroot}%{_prefix}/lib/NetworkManager/dispatcher.d
df4638
install -p -m 0755 %{SOURCE3} %{buildroot}%{_prefix}/lib/NetworkManager/dispatcher.d
df4638
df4638
# pm-utils script to handle suspend/resume and dhclient leases
df4638
install -D -p -m 0755 %{SOURCE5} %{buildroot}%{_libdir}/pm-utils/sleep.d/56dhclient
df4638
df4638
# systemd unit files
df4638
mkdir -p %{buildroot}%{_unitdir}
df4638
install -m 644 %{SOURCE6} %{buildroot}%{_unitdir}
df4638
install -m 644 %{SOURCE7} %{buildroot}%{_unitdir}
df4638
install -m 644 %{SOURCE8} %{buildroot}%{_unitdir}
df4638
df4638
# Start empty lease databases
df4638
mkdir -p %{buildroot}%{_localstatedir}/lib/dhcpd/
df4638
touch %{buildroot}%{_localstatedir}/lib/dhcpd/dhcpd.leases
df4638
touch %{buildroot}%{_localstatedir}/lib/dhcpd/dhcpd6.leases
df4638
mkdir -p %{buildroot}%{_localstatedir}/lib/dhclient/
df4638
df4638
# default sysconfig file for dhcpd
df4638
mkdir -p %{buildroot}%{_sysconfdir}/sysconfig
df4638
cat <<EOF > %{buildroot}%{_sysconfdir}/sysconfig/dhcpd
df4638
# WARNING: This file is NOT used anymore.
df4638
df4638
# If you are here to restrict what interfaces should dhcpd listen on,
df4638
# be aware that dhcpd listens *only* on interfaces for which it finds subnet
df4638
# declaration in dhcpd.conf. It means that explicitly enumerating interfaces
df4638
# also on command line should not be required in most cases.
df4638
df4638
# If you still insist on adding some command line options,
df4638
# copy dhcpd.service from /lib/systemd/system to /etc/systemd/system and modify
df4638
# it there.
df4638
# https://fedoraproject.org/wiki/Systemd#How_do_I_customize_a_unit_file.2F_add_a_custom_unit_file.3F
df4638
df4638
# example:
df4638
# $ cp /usr/lib/systemd/system/dhcpd.service /etc/systemd/system/
df4638
# $ vi /etc/systemd/system/dhcpd.service
df4638
# $ ExecStart=/usr/sbin/dhcpd -f -cf /etc/dhcp/dhcpd.conf -user dhcpd -group dhcpd --no-pid <your_interface_name(s)>
df4638
# $ systemctl --system daemon-reload
df4638
# $ systemctl restart dhcpd.service
df4638
EOF
df4638
df4638
# Copy sample conf files into position (called by doc macro)
df4638
cp -p doc/examples/dhclient-dhcpv6.conf client/dhclient6.conf.example
df4638
cp -p doc/examples/dhcpd-dhcpv6.conf server/dhcpd6.conf.example
df4638
df4638
cat << EOF > client/dhclient-enter-hooks
df4638
#!/bin/bash
df4638
df4638
# For dhclient/dhclient-script debugging.
df4638
# Copy this into /etc/dhcp/ and make it executable.
df4638
# Run 'dhclient -d <interface>' to see info passed from dhclient to dhclient-script.
df4638
# See also HOOKS section in dhclient-script(8) man page.
df4638
df4638
echo "interface: ${interface}"
df4638
echo "reason: ${reason}"
df4638
df4638
( set -o posix ; set ) | grep "old_"
df4638
( set -o posix ; set ) | grep "new_"
df4638
( set -o posix ; set ) | grep "alias_"
df4638
( set -o posix ; set ) | grep "requested_"
df4638
EOF
df4638
df4638
# Install default (empty) dhcpd.conf:
df4638
mkdir -p %{buildroot}%{dhcpconfdir}
df4638
cat << EOF > %{buildroot}%{dhcpconfdir}/dhcpd.conf
df4638
#
df4638
# DHCP Server Configuration file.
df4638
#   see /usr/share/doc/dhcp-server/dhcpd.conf.example
df4638
#   see dhcpd.conf(5) man page
df4638
#
df4638
EOF
df4638
df4638
# Install default (empty) dhcpd6.conf:
df4638
cat << EOF > %{buildroot}%{dhcpconfdir}/dhcpd6.conf
df4638
#
df4638
# DHCPv6 Server Configuration file.
df4638
#   see /usr/share/doc/dhcp-server/dhcpd6.conf.example
df4638
#   see dhcpd.conf(5) man page
df4638
#
df4638
EOF
df4638
df4638
# Install dhcp.schema for LDAP configuration
df4638
install -D -p -m 0644 contrib/ldap/dhcp.schema %{buildroot}%{_sysconfdir}/openldap/schema/dhcp.schema
df4638
df4638
# Don't package libtool *.la files
df4638
find %{buildroot} -type f -name "*.la" -delete -print
df4638
df4638
%pre server
df4638
# /usr/share/doc/setup/uidgid
df4638
%global gid_uid 177
df4638
getent group dhcpd >/dev/null || groupadd --force --gid %{gid_uid} --system dhcpd
df4638
if ! getent passwd dhcpd >/dev/null ; then
df4638
    if ! getent passwd %{gid_uid} >/dev/null ; then
df4638
      useradd --system --uid %{gid_uid} --gid dhcpd --home / --shell /sbin/nologin --comment "DHCP server" dhcpd
df4638
    else
df4638
      useradd --system --gid dhcpd --home / --shell /sbin/nologin --comment "DHCP server" dhcpd
df4638
    fi
df4638
fi
df4638
exit 0
df4638
df4638
%post server
df4638
# Initial installation
df4638
%systemd_post dhcpd.service dhcpd6.service
df4638
df4638
df4638
for servicename in dhcpd dhcpd6; do
df4638
  etcservicefile=%{_sysconfdir}/systemd/system/${servicename}.service
df4638
  if [ -f ${etcservicefile} ]; then
df4638
    grep -q Type= ${etcservicefile} || sed -i '/\[Service\]/a Type=notify' ${etcservicefile}
df4638
    sed -i 's/After=network.target/Wants=network-online.target\nAfter=network-online.target/' ${etcservicefile}
df4638
  fi
df4638
done
df4638
exit 0
df4638
df4638
%post relay
df4638
# Initial installation
df4638
%systemd_post dhcrelay.service
df4638
df4638
for servicename in dhcrelay; do
df4638
  etcservicefile=%{_sysconfdir}/systemd/system/${servicename}.service
df4638
  if [ -f ${etcservicefile} ]; then
df4638
    grep -q Type= ${etcservicefile} || sed -i '/\[Service\]/a Type=notify' ${etcservicefile}
df4638
    sed -i 's/After=network.target/Wants=network-online.target\nAfter=network-online.target/' ${etcservicefile}
df4638
  fi
df4638
done
df4638
exit 0
df4638
df4638
%preun server
df4638
# Package removal, not upgrade
df4638
%systemd_preun dhcpd.service dhcpd6.service
df4638
df4638
%preun relay
df4638
# Package removal, not upgrade
df4638
%systemd_preun dhcrelay.service
df4638
df4638
df4638
%postun server
df4638
# Package upgrade, not uninstall
df4638
%systemd_postun_with_restart dhcpd.service dhcpd6.service
df4638
df4638
%postun relay
df4638
# Package upgrade, not uninstall
df4638
%systemd_postun_with_restart dhcrelay.service
df4638
df4638
df4638
%triggerun -- dhcp
df4638
# convert DHC*ARGS from /etc/sysconfig/dhc* to /etc/systemd/system/dhc*.service
df4638
for servicename in dhcpd dhcpd6 dhcrelay; do
df4638
  if [ -f %{_sysconfdir}/sysconfig/${servicename} ]; then
df4638
    # get DHCPDARGS/DHCRELAYARGS value from /etc/sysconfig/${servicename}
df4638
    source %{_sysconfdir}/sysconfig/${servicename}
df4638
    if [ "${servicename}" == "dhcrelay" ]; then
df4638
        args=$DHCRELAYARGS
df4638
    else
df4638
        args=$DHCPDARGS
df4638
    fi
df4638
    # value is non-empty (i.e. user modified) and there isn't a service unit yet
df4638
    if [ -n "${args}" -a ! -f %{_sysconfdir}/systemd/system/${servicename}.service ]; then
df4638
      # in $args replace / with \/ otherwise the next sed won't take it
df4638
      args=$(echo $args | sed 's/\//\\\//'g)
df4638
      # add $args to the end of ExecStart line
df4638
      sed -r -e "/ExecStart=/ s/$/ ${args}/" \
df4638
                < %{_unitdir}/${servicename}.service \
df4638
                > %{_sysconfdir}/systemd/system/${servicename}.service
df4638
    fi
df4638
  fi
df4638
done
df4638
df4638
%files server
df4638
%doc server/dhcpd.conf.example server/dhcpd6.conf.example
df4638
%doc contrib/ldap/ contrib/dhcp-lease-list.pl
df4638
%attr(0750,root,root) %dir %{dhcpconfdir}
df4638
%attr(0755,dhcpd,dhcpd) %dir %{_localstatedir}/lib/dhcpd
df4638
%attr(0644,dhcpd,dhcpd) %verify(mode) %config(noreplace) %{_localstatedir}/lib/dhcpd/dhcpd.leases
df4638
%attr(0644,dhcpd,dhcpd) %verify(mode) %config(noreplace) %{_localstatedir}/lib/dhcpd/dhcpd6.leases
df4638
%config(noreplace) %{_sysconfdir}/sysconfig/dhcpd
df4638
%config(noreplace) %{dhcpconfdir}/dhcpd.conf
df4638
%config(noreplace) %{dhcpconfdir}/dhcpd6.conf
df4638
%dir %{_sysconfdir}/openldap/schema
df4638
%config(noreplace) %{_sysconfdir}/openldap/schema/dhcp.schema
df4638
%attr(0644,root,root)   %{_unitdir}/dhcpd.service
df4638
%attr(0644,root,root)   %{_unitdir}/dhcpd6.service
df4638
%{_sbindir}/dhcpd
df4638
%{_bindir}/omshell
df4638
%attr(0644,root,root) %{_mandir}/man1/omshell.1.gz
df4638
%attr(0644,root,root) %{_mandir}/man5/dhcpd.conf.5.gz
df4638
%attr(0644,root,root) %{_mandir}/man5/dhcpd.leases.5.gz
df4638
%attr(0644,root,root) %{_mandir}/man8/dhcpd.8.gz
df4638
%if %{sdt}
df4638
%{tapsetdir}/*.stp
df4638
%endif
df4638
df4638
%files relay
df4638
%{_sbindir}/dhcrelay
df4638
%attr(0644,root,root) %{_unitdir}/dhcrelay.service
df4638
%attr(0644,root,root) %{_mandir}/man8/dhcrelay.8.gz
df4638
df4638
%files client
df4638
%doc README.dhclient.d
df4638
%doc client/dhclient.conf.example client/dhclient6.conf.example client/dhclient-enter-hooks
df4638
%attr(0750,root,root) %dir %{dhcpconfdir}
df4638
%dir %{dhcpconfdir}/dhclient.d
df4638
%dir %{_localstatedir}/lib/dhclient
df4638
%dir %{_prefix}/lib/NetworkManager
df4638
%dir %{_prefix}/lib/NetworkManager/dispatcher.d
df4638
%{_prefix}/lib/NetworkManager/dispatcher.d/11-dhclient
df4638
%{_sbindir}/dhclient
df4638
%{_sbindir}/dhclient-script
df4638
%attr(0755,root,root) %{_libdir}/pm-utils/sleep.d/56dhclient
df4638
%attr(0644,root,root) %{_mandir}/man5/dhclient.conf.5.gz
df4638
%attr(0644,root,root) %{_mandir}/man5/dhclient.leases.5.gz
df4638
%attr(0644,root,root) %{_mandir}/man8/dhclient.8.gz
df4638
%attr(0644,root,root) %{_mandir}/man8/dhclient-script.8.gz
df4638
df4638
%files common
df4638
%{!?_licensedir:%global license %%doc}
df4638
%{license} LICENSE
df4638
%doc README RELNOTES doc/References.txt
df4638
%attr(0644,root,root) %{_mandir}/man5/dhcp-options.5.gz
df4638
%attr(0644,root,root) %{_mandir}/man5/dhcp-eval.5.gz
df4638
df4638
%files libs-static
df4638
%{_libdir}/libdhcp*.a
df4638
%{_libdir}/libomapi.a
df4638
df4638
%files devel
df4638
%doc doc/IANA-arp-parameters doc/api+protocol
df4638
%{_includedir}/dhcpctl
df4638
%{_includedir}/omapip
df4638
%attr(0644,root,root) %{_mandir}/man3/dhcpctl.3.gz
df4638
%attr(0644,root,root) %{_mandir}/man3/omapi.3.gz
df4638
df4638
%if ! 0%{?_module_build}
df4638
%files devel-doc
df4638
%doc doc/html/
df4638
%endif
df4638
df4638
%changelog
f1e901
* Wed Nov 03 2021 CentOS Sources <bugs@centos.org> - 4.4.2-15.b1.el9.centos
f1e901
- Apply debranding changes
f1e901
df4638
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 12:4.4.2-15.b1
df4638
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
df4638
  Related: rhbz#1991688
df4638
df4638
* Thu Jul  8 2021 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.2-14.b1
df4638
- Fix for CVE-2021-25217
df4638
df4638
* Mon Jun 14 2021 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.2-13.b1
df4638
- Do not export getaddrinfo from irs libs (#1969858)
df4638
df4638
* Fri Jun 11 2021 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.2-11.b1
df4638
- Drop compat package finally
df4638
df4638
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 12:4.4.2-10.b1
df4638
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
df4638
df4638
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 12:4.4.2-9.b1
df4638
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
df4638
df4638
* Wed Jul 29 2020 Pavel Zhukov <pavel@pzhukov-pc.home.redhat.com> - 12:4.4.2-8.b1
df4638
- Fix IB patch (#1860689)
df4638
df4638
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 12:4.4.2-7.b1
df4638
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
df4638
df4638
* Wed Apr 22 2020 Pavel Zhukov <pavel@desktop.zhukoff.net> - 12:4.4.2-6.b1
df4638
- Change upstream URL
df4638
df4638
* Fri Feb 21 2020 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.2-5.b1
df4638
- Workarounnd for gcc10
df4638
df4638
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 12:4.4.2-4.b1
df4638
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
df4638
df4638
* Mon Jan  6 2020 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.2-3.b1
df4638
- Drop NetworkManager 12-dhcpd script. It's deprecated by wait-online (#1780861) 
df4638
df4638
* Mon Jan  6 2020 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.2-1.b1
df4638
- Dropped all (pre 4.0.0) changelog
df4638
- New version (4.4.2b1)
df4638
df4638
* Wed Nov 27 2019 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.1-20
df4638
- Fix leak of file descriptors
df4638
df4638
* Mon Nov 11 2019 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.1-19
df4638
- Reword -B option description
df4638
df4638
* Thu Nov  7 2019 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.1-18
df4638
- Readd sd-notify patch
df4638
df4638
* Thu Aug 22 2019 Lubomir Rintel <lkundrak@v3.sk> - 12:4.4.1-17
df4638
- Move the NetworkManager dispatcher script out of /etc
df4638
df4638
* Thu Jul 25 2019 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.1-16
df4638
- Split timers patch to bind and dhcp parts
df4638
df4638
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 12:4.4.1-15
df4638
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
df4638
df4638
* Thu Jul 11 2019 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.1-14
df4638
- Detect time change and request lease renewal
df4638
df4638
* Mon May 20 2019 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.1-13
df4638
- Unpack bind prior to patching
df4638
- Provide noarch libs
df4638
df4638
* Sat May 04 2019 Björn Esser <besser82@fedoraproject.org> - 12:4.4.1-12
df4638
- rebuilt (bind)
df4638
df4638
* Tue Apr  2 2019 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.1-11
df4638
- Specify epoch for obsolete
df4638
df4638
* Tue Apr  2 2019 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.1-10
df4638
- Cherry-pick 00b7f9a Specify architecture for provides -
df4638
df4638
* Tue Apr  2 2019 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.1-9
df4638
- Move obsolete to common section
df4638
df4638
* Wed Mar 27 2019 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.1-8
df4638
- Add sd_notify patch to support systemd notify (1687040)
df4638
df4638
* Mon Mar 18 2019 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.1-7
df4638
- Provides specific version of libs
df4638
df4638
* Mon Mar 18 2019 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.1-6
df4638
- Obsolete dhcp-libs
df4638
df4638
* Wed Mar 13 2019 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.1-5
df4638
- Do not require static libs for non devel installations
df4638
df4638
* Thu Feb 28 2019 Pavel Zhukov <pzhukov@redhat.com> - 12:4.4.1-3
df4638
- New version 4.4.1
df4638
df4638
* Mon Sep 24 2018 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.6-29
df4638
- Resolves: 1632246 - Do not fail if iface has no hwaddr
df4638
df4638
* Thu Aug 30 2018 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.6-28
df4638
- Do not try to map leases file in memory if not in replay mode
df4638
df4638
* Fri Jul 13 2018 Petr Menšík <pemensik@redhat.com> - 12:4.3.6-27
df4638
- Update to bind 9.11.4
df4638
df4638
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 12:4.3.6-26
df4638
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
df4638
df4638
* Mon Jun 18 2018 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.6-25
df4638
- Resolves: 1592239 - Handle dhcp4-change event properly
df4638
df4638
* Mon May 21 2018 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.6-24
df4638
- Fix few more shellcheck warnings
df4638
df4638
* Fri May 18 2018 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.6-23
df4638
- Get rid of eval in 11-dhclient
df4638
- Credits to legolegs user of linux.org.ru
df4638
df4638
* Tue May 15 2018 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.6-21
df4638
- Fix for CVE-2018-1111
df4638
df4638
* Fri Apr  6 2018 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.6-20
df4638
- Discover hwaddr for all interfaces for xid uniqueness
df4638
df4638
* Wed Mar 21 2018 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.6-19
df4638
- Don't use run-parts for hooks discovery (#1558612)
df4638
df4638
* Fri Mar 09 2018 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.6-18
df4638
- Own ldap schema directory (#1553432)
df4638
df4638
* Thu Mar  1 2018 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.6-17
df4638
- Fix CVE-2018-5732 CVE-2018-5733 (#1550246)
df4638
df4638
* Thu Feb 22 2018 Petr Menšík <pemensik@redhat.com> - 12:4.3.6-16
df4638
- Compile with recent bind includes, that does not include isc/util.h
df4638
df4638
* Thu Feb 22 2018 Petr Menšík <pemensik@redhat.com> - 12:4.3.6-15
df4638
- Do not rely on ignoring case sensitivity of VERSION variable
df4638
df4638
* Thu Feb 22 2018 Petr Menšík <pemensik@redhat.com> - 12:4.3.6-14
df4638
- Use bind-export-libs package instead of bind99
df4638
- Use isc-config.sh to configure bind libs
df4638
- Change requirement to bind-export-devel
df4638
df4638
* Thu Feb 22 2018 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.6-13
df4638
- Do not parse sysconfig/network-scripts if initscripts not installed (#1098172)
df4638
df4638
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 12:4.3.6-12
df4638
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
df4638
df4638
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 12:4.3.6-11
df4638
- Switch to %%ldconfig_scriptlets
df4638
df4638
* Wed Jan 10 2018 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.6-10
df4638
- Use released version
df4638
df4638
* Wed Dec 20 2017 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.5-9
df4638
- Change duid_uuid patch to not use std99 feature
df4638
df4638
* Fri Dec  8 2017 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.6-8
df4638
- Fix omapi SD leak (#1523547)
df4638
df4638
* Thu Nov  9 2017 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.6-7
df4638
- Add patch for proper signal handling with shared context (#1457871)
df4638
df4638
* Wed Sep 20 2017 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.6-6
df4638
- Do now override hostname variable in script
df4638
df4638
* Sun Sep 10 2017 Peter Robinson <pbrobinson@fedoraproject.org> 12:4.3.6-5
df4638
- Rebuild for bind 9.9.11
df4638
df4638
* Tue Aug  1 2017 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.6-4
df4638
- Fix typos in dhclient-script
df4638
df4638
* Thu Jul 27 2017 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.6-3
df4638
- Recreate /etc/resolv.conf if NetworkManager screwed it up (#1475279)
df4638
df4638
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 12:4.3.6-2
df4638
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
df4638
df4638
df4638
* Fri Jul 14 2017 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.6-1
df4638
- New version 4.3.6
df4638
df4638
* Fri Jul 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 12:4.3.5-10
df4638
- Rebuild due to bug in RPM (RHBZ #1468476)
df4638
df4638
* Mon Jul 03 2017 Petr Menšík <pemensik@redhat.com> - 12:4.3.5-9
df4638
- Rebuild for bind 9.9.10
df4638
df4638
* Wed May 31 2017 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.5-8
df4638
- Drop chown from the post section
df4638
df4638
* Tue May 23 2017 Pavel Zhukov <pzhukov@redhat.com> - 12:4.3.5-7
df4638
- Don't open ddns port until it's needed. Credits to Petr Menšík for the original idea
df4638
df4638
* Wed Apr 19 2017 Dominika Hodovska <dhodovsk@redhat.com> - 12:4.3.5-5
df4638
- don't build doxygen documentation during modular build
df4638
df4638
* Tue Apr 04 2017 Pavel Zhukov <landgraf@fedoraproject.org> - 12:4.3.5-4
df4638
- Add EnvironmentFile parameter for backward compatibility
df4638
df4638
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 12:4.3.5-3
df4638
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
df4638
df4638
* Wed Nov 30 2016 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.5-2
df4638
- get BUG_REPORT_URL from /etc/os-release (#1399351)
df4638
df4638
* Wed Oct 05 2016 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.5-1
df4638
- 4.3.5
df4638
df4638
* Mon Sep 12 2016 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.5-0.1b1
df4638
- 4.3.5b1
df4638
df4638
* Wed Aug 03 2016 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.4-3
df4638
- [dhclient] rename -R option to --request-options (#1357947)
df4638
- [dhclient] rename -timeout option to --timeout
df4638
df4638
* Thu May 26 2016 Tomas Hozza <thozza@redhat.com> - 12:4.3.4-2
df4638
- Rebuild against bind99-9.9.9-P1
df4638
df4638
* Fri Apr 29 2016 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.4-1
df4638
- 4.3.4
df4638
- disable systemtap (I don't think anybody ever used it)
df4638
df4638
* Wed Mar 23 2016 Zdenek Dohnal zdohnal@redhat.com - 12:4.3.3-13.P1
df4638
- Mentioning the bash script is needed in README.dhclient.d
df4638
df4638
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 12:4.3.3-12.P1
df4638
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
df4638
df4638
* Wed Jan 13 2016 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.3-11.P1
df4638
- 4.3.3-P1 - fix for CVE-2015-8605 (#1298077)
df4638
df4638
* Wed Dec 16 2015 Tomas Hozza <thozza@redhat.com> - 12:4.3.3-10
df4638
- Rebuild against bind-9.9.8-P2
df4638
df4638
* Mon Dec 14 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.3-9
df4638
- implement DUID-UUID (RFC 6355) and make it default DUID type (#560361#60)
df4638
df4638
* Tue Nov 24 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.3-8
df4638
- dispatcher.d/12-dhcpd: use reset-failed command
df4638
df4638
* Mon Nov 23 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.3-7
df4638
- dhclient-script: hostname -> hostnamectl --transient
df4638
df4638
* Tue Nov 03 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.3-6
df4638
- dhclient-script: source ifcfg-* because of PEERDNS (#1277253)
df4638
df4638
* Tue Oct 13 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.3-5
df4638
- dhclient-script: fix for gateway not in the end of rfc3442 routes list (#1251644)
df4638
df4638
* Tue Oct 13 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.3-4
df4638
- dhclient-script: make_resolv_conf(): keep old nameservers
df4638
  if server sends domain-name/search, but no nameservers (#1269595)
df4638
df4638
* Tue Sep 22 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.3-3
df4638
- dhclient: make sure link-local address is ready in stateless mode (#1263466)
df4638
df4638
* Mon Sep 07 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.3-2
df4638
- VLAN ID is only bottom 12-bits of TCI (#1259552)
df4638
df4638
* Fri Sep 04 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.3-1
df4638
- 4.3.3
df4638
df4638
* Tue Aug 11 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.3-0.2b1
df4638
- dhclient-script: respect DEFROUTE/GATEWAYDEV if Classless Static Routes are offered (#1251644)
df4638
df4638
* Mon Aug 10 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.3-0.1b1
df4638
- 4.3.3b1
df4638
- enable krb5/gssapi authentication for OpenLDAP
df4638
- enable support for binary insertion of leases
df4638
df4638
* Wed Jul 15 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.2-12
df4638
- fix ipcalc requires
df4638
df4638
* Tue Jul 14 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.2-11
df4638
- remove dependency on initscripts (#1098172)
df4638
- make path to resolv.conf configurable (#1086425)
df4638
df4638
* Thu Jul 09 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.2-10
df4638
- spec cleanup
df4638
df4638
* Thu Jul 02 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.2-9
df4638
- test upstream fix for #866714 (paranoia.patch)
df4638
df4638
* Wed Jun 24 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.2-8
df4638
- add more randomness into xid generation (#1195693)
df4638
df4638
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 12:4.3.2-7
df4638
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
df4638
df4638
* Tue May 26 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.2-6
df4638
- dhclient-script: run also scripts in dhclient-[enter/exit]-hooks.d dir
df4638
df4638
* Tue Apr 21 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.2-5
df4638
- dhclient-script: add a minute to address lifetimes (#1188423)
df4638
df4638
* Mon Apr 13 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.2-4
df4638
- dhclient-script: amend previous change (#1210984)
df4638
df4638
* Wed Mar 25 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.2-3
df4638
- dhclient-script: fix shellcheck.net suggestions
df4638
df4638
* Fri Mar 13 2015 Tomas Hozza <thozza@redhat.com> - 12:4.3.2-2
df4638
- rebuild against bind99 9.9.7 package
df4638
df4638
* Thu Mar 05 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.2-1
df4638
- 4.3.2
df4638
df4638
* Wed Feb 25 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.2-0.6b1
df4638
- correctly set IB's hw->hlen (#1185075)
df4638
df4638
* Wed Feb 25 2015 Tomas Hozza <thozza@redhat.com> - 12:4.3.2-0.5b1
df4638
- Rebuild against bind-9.10.2rc2
df4638
df4638
* Tue Feb 17 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.2-0.4b1
df4638
- dhclient-script: use 'ip addr replace' for both BOUND & RENEW
df4638
df4638
* Tue Feb 17 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.2-0.3b1
df4638
- doc/dhclient/dhclient-enter-hooks for dhclient-script debugging
df4638
df4638
* Fri Feb 13 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.2-0.2b1
df4638
- dhclient-script: s/addr add/addr replace/
df4638
df4638
* Sun Feb 08 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.2-0.1b1
df4638
- 4.3.2b1
df4638
df4638
* Tue Feb 03 2015 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.1-21
df4638
- send unicast request/release via correct interface (#800561, #1177351)
df4638
df4638
* Mon Feb 02 2015 Tomas Hozza <thozza@redhat.com> - 12:4.3.1-20
df4638
- rebuild against bind-9.10.2rc1
df4638
df4638
* Wed Jan 14 2015 Tomas Hozza <thozza@redhat.com> - 12:4.3.1-19
df4638
- rebuild against bind 9.10.1-P1
df4638
df4638
* Thu Dec 18 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.1-18
df4638
- dhclient: write DUID_LLT even in stateless mode (#1156356)
df4638
df4638
* Wed Dec 17 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.1-17
df4638
- option 97 - pxe-client-id (#1058674)
df4638
df4638
* Wed Nov 19 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.1-16
df4638
- amend post scriptlets for #1120656
df4638
df4638
* Mon Nov 10 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.1-15
df4638
- dhclient-script: restorecon calls shouldn't be needed
df4638
                   as we have SELinux transition rules (#1161500)
df4638
df4638
* Tue Nov 04 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.1-14
df4638
- GSSAPI support for ldap authentication (#1150542)
df4638
df4638
* Fri Oct 31 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.1-13
df4638
- redefine DHCLIENT_DEFAULT_PREFIX_LEN  64 -> 128
df4638
df4638
* Fri Oct 10 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.1-12
df4638
- Relay-forward Message's Hop Limit should be 32 (#1147240)
df4638
df4638
* Wed Oct 08 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.1-11
df4638
- dhcpd generates spurious responses when seeing requests
df4638
  from vlans on plain interface (#1150587)
df4638
df4638
* Fri Oct 03 2014 Tomas Hozza <thozza@redhat.com> - 12:4.3.1-10
df4638
- rebuild against bind-9.9.6
df4638
df4638
* Thu Sep 04 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.1-9
df4638
- [dhclient -6] infinite preferred/valid lifetime represented as -1 (#1133839)
df4638
df4638
* Mon Sep 01 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.1-8
df4638
- better obsoletes for server & client
df4638
df4638
* Sat Aug 30 2014 Kalev Lember <kalevlember@gmail.com> - 12:4.3.1-7
df4638
- Fix dhclient obsoletes version
df4638
df4638
* Tue Aug 26 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.1-6
df4638
- dhclient-script: another improvement of add_ipv6_addr_with_DAD()
df4638
df4638
* Mon Aug 25 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.1-5
df4638
- spec: use -D with 'install'
df4638
- dhclient-script: IPv6 address which fails DAD is auto-removed when it was
df4638
  added with valid_lft/preferred_lft other then 'forever' (#1133465)
df4638
df4638
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 12:4.3.1-4
df4638
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
df4638
df4638
* Thu Aug 14 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.1-3
df4638
- dhclient-script: one more fix for #1129500
df4638
df4638
* Thu Aug 14 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.1-2
df4638
- dhclient-script: PREINIT6: make sure link-local address is available (#1129500)
df4638
df4638
* Tue Aug 12 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.1-1
df4638
- 4.3.1
df4638
df4638
* Tue Aug 05 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.1-0.4.b1
df4638
- dhclient-script: it's OK if the arping reply comes from our system (#1116004)
df4638
df4638
* Tue Jul 22 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.1-0.3.b1
df4638
- Use network-online.target instead of network.target (#1120656)
df4638
df4638
* Fri Jul 11 2014 Tom Callaway <spot@fedoraproject.org> 12:4.3.1-0.2.b1
df4638
- fix license handling
df4638
df4638
* Thu Jul 10 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.1-0.1.b1
df4638
- 4.3.1b1
df4638
df4638
* Thu Jun 12 2014 Filipe Brandenburger <filbranden@google.com> - 12:4.3.0-15
df4638
- dhclient-script: fix issue with classless static routes that breaks Fedora 20 on GCE cloud (#1102830)
df4638
df4638
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 12:4.3.0-14
df4638
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
df4638
df4638
* Fri May 30 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.0-13
df4638
- systemtap: fixed dtrace input file (#1102797)
df4638
df4638
* Thu May 29 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.0-12
df4638
- dhcp-sd_notify.patch BuildRequires: pkgconfig(libsystemd)
df4638
df4638
* Wed May 28 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.0-11
df4638
- dhclient-script: fix stateless DHCPv6 mode (#1101149)
df4638
df4638
* Wed May 07 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.0-10
df4638
- use StandardError=null instead of log_perror.patch
df4638
df4638
* Tue Mar 18 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.0-9
df4638
- support for sending startup notifications to systemd (#1077666)
df4638
df4638
* Fri Mar 07 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.0-8
df4638
- rename doc subpackage do devel-doc
df4638
df4638
* Mon Mar 03 2014 Jaromír Končický <jkoncick@redhat.com> - 12:4.3.0-7
df4638
- added 'doc' package containing doxygen-generated documentation
df4638
df4638
* Wed Feb 19 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.0-6
df4638
- dhclient: rename our -I option to -C as upstream now uses -I
df4638
df4638
* Wed Feb 19 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.0-5
df4638
- dhclient-script: don't flush all addresses, just the used one
df4638
df4638
* Tue Feb 18 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.0-4
df4638
- IPoIB: add GUID/DUID to dhcpd logs (#1064416)
df4638
df4638
* Mon Feb 17 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.0-3
df4638
- don't try to run tests because there's no atf package since F21
df4638
df4638
* Mon Feb 17 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.0-2
df4638
- turn on using of DUID with DHCPv4 clients (#560361,c#40)
df4638
- remove default /etc/dhcp/dhclient.conf
df4638
df4638
* Tue Feb 04 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.0-1
df4638
- 4.3.0
df4638
df4638
* Wed Jan 29 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.0-0.7.rc1
df4638
- 4.3.0rc1
df4638
df4638
* Tue Jan 28 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.0-0.6.b1
df4638
- don't apply retransmission.patch for now (RHBZ#1026565)
df4638
df4638
* Sun Jan 26 2014 Kevin Fenzi <kevin@scrye.com> 12:4.3.0-0.5.b1
df4638
- Rebuild for new bind
df4638
df4638
* Tue Jan 21 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.0-0.4.b1
df4638
- 4.3.0b1
df4638
- ship dhcp-lease-list.pl
df4638
- dhclient-script: don't ping router (#1055181)
df4638
df4638
* Mon Jan 13 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.0-0.3.a1
df4638
- update address lifetimes on RENEW/RENEW6 (#1032809)
df4638
df4638
* Tue Jan 07 2014 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.0-0.2.a1
df4638
- make it actually build
df4638
df4638
* Thu Dec 19 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.3.0-0.1.a1
df4638
- 4.3.0a1: requires bind-9.9.5
df4638
df4638
* Thu Nov 21 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-28
df4638
- dhclient-script: set address lifetimes (#1032809)
df4638
df4638
* Thu Nov 14 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-27
df4638
- dhclient-script(RENEW6|REBIND6): delete old ip6_address if it changed (#1015729)
df4638
df4638
* Thu Oct 31 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-26
df4638
- Provide default /etc/dhcp/dhclient.conf
df4638
- Client always sends dhcp-client-identifier (#560361)
df4638
df4638
* Thu Oct 24 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-25
df4638
- use upstream patch for #1001742 ([ISC-Bugs #34784])
df4638
df4638
* Mon Oct 07 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-24
df4638
- dhcpd rejects the udp packet with checksum=0xffff (#1015997)
df4638
df4638
* Fri Sep 27 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-23
df4638
- 'No subnet declaration for <iface>' should be info, not error
df4638
- decrease the sleep in 12-dhcpd due to timeout (#1003695#8)
df4638
df4638
* Wed Sep 18 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-22
df4638
- fix segfault introduced with previous commit
df4638
df4638
* Tue Sep 17 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-21
df4638
- 12-dhcpd: wait a few seconds before restarting services (#1003695)
df4638
- another solution for #1001742 (#1005814#c10)
df4638
df4638
* Thu Sep 12 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-20
df4638
- bind DHCPv6 client to link-local address instead of 0 address (#1001742)
df4638
df4638
* Mon Aug 26 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-19
df4638
- don't crash on aliased infiniband interface (#996518)
df4638
df4638
* Sun Aug 04 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-18
df4638
- BuildRequires: systemd due to  %%{_unitdir}
df4638
df4638
* Mon Jul 29 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-17
df4638
- 12-dhcpd previously exited with error status 1 (#989207)
df4638
df4638
* Mon Jul 15 2013 Tomas Hozza <thozza@redhat.com> - 12:4.2.5-16
df4638
- rebuild against new bind
df4638
df4638
* Tue Jul 02 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-15
df4638
- fix several memory leaks in omapi (#978420)
df4638
- remove send_release.patch (#979510)
df4638
df4638
* Tue Jun 18 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-14
df4638
- rebuilt against bind once more
df4638
df4638
* Fri Jun 14 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-13
df4638
- return /etc/sysconfig/dhcpd back, but do NOT use it (#909733)
df4638
df4638
* Tue May 14 2013 Adam Williamson <awilliam@redhat.com> - 12:4.2.5-12
df4638
- rebuild against new bind
df4638
df4638
* Tue Apr 30 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-11
df4638
- add missing conversion specifier in log_fatal() call (#957371)
df4638
df4638
* Tue Apr 16 2013 Adam Tkac <atkac redhat com> - 12:4.2.5-10
df4638
- rebuild against new bind
df4638
df4638
* Wed Apr 03 2013 Tomas Hozza <thozza@redhat.com> - 12:4.2.5-9
df4638
- Expose next-server DHCPv4 option to dhclient script
df4638
df4638
* Tue Mar 26 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-8
df4638
- describe -user/-group/-chroot in dhcpd.8
df4638
df4638
* Fri Feb 22 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-7
df4638
- remove triggerun condition (#895475)
df4638
df4638
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 12:4.2.5-6
df4638
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
df4638
df4638
* Thu Jan 24 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-5
df4638
- remove missing-ipv6-not-fatal.patch because the concerning code is later
df4638
  removed with getifaddrs.patch
df4638
df4638
* Wed Jan 23 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-4
df4638
- Make sure range6 is correct for subnet6 where it's declared (#902966)
df4638
df4638
* Fri Jan 18 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-3
df4638
- simplify the previously added triggerun scriptlet
df4638
df4638
* Thu Jan 17 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-2
df4638
- during update convert DHC*ARGS from /etc/sysconfig/dhc*
df4638
  to /etc/systemd/system/dhc*.service (#895475)
df4638
- 12-dhcpd NM dispatcher script now restarts also dhcpd6 service
df4638
df4638
* Thu Jan 10 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-1
df4638
- 4.2.5
df4638
df4638
* Wed Jan 02 2013 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-0.3.rc1
df4638
- run %%check in Fedora only, there's no atf package in RHEL
df4638
df4638
* Thu Dec 20 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-0.2.rc1
df4638
- don't package ancient contrib/* files
df4638
df4638
* Thu Dec 20 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.5-0.1.rc1
df4638
- 4.2.5rc1
df4638
  - added %%check - upstream unit tests (Automated Test Framework - ATF)
df4638
df4638
* Fri Nov 30 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-23.P2
df4638
- fix two resource leaks in lpf-ib.patch
df4638
df4638
* Mon Nov 26 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-22.P2
df4638
- add After=time-sync.target to dhcpd[6].service (#878293)
df4638
- remove groff from BuildRequires (no idea why it's been there)
df4638
df4638
* Fri Nov 16 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-21.P2
df4638
- multiple key statements in zone definition causes inappropriate error (#873794)
df4638
df4638
* Fri Oct 26 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-20.P2
df4638
- fix path to dhcpd6.leases in dhcpd6.conf.sample (#870458)
df4638
df4638
* Wed Oct 17 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-19.P2
df4638
- dhcpd needs to chown leases file created before de-rooting itself (#866714)
df4638
df4638
* Thu Oct 11 2012 Adam Tkac <atkac redhat com> - 12:4.2.4-18.P2
df4638
- rebuild against new bind-libs-lite
df4638
df4638
* Tue Oct 09 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-17.P2
df4638
- do-forward-updates statement wasn't recognized (#863646)
df4638
df4638
* Wed Sep 26 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-16.P2
df4638
- dhclient-usage.patch+part of manpages.patch merged with dhclient-options.patch
df4638
df4638
* Thu Sep 13 2012 Tomas Hozza <thozza@redhat.com> - 12:4.2.4-15.P2
df4638
- 4.2.4-P2: fix for CVE-2012-3955 (#856770)
df4638
df4638
* Fri Aug 24 2012 Tomas Hozza <thozza@redhat.com> - 12:4.2.4-14.P1
df4638
- SystemD unit files don't use Environment files any more (#850558)
df4638
- NetworkManager dispatcher script doesn't use DHCPDARGS any more
df4638
df4638
* Wed Aug 22 2012 Tomas Hozza <thozza@redhat.com> - 12:4.2.4-13.P1
df4638
- fixed SPEC file so it comply with new systemd-rpm macros guidelines (#850089)
df4638
df4638
* Mon Aug 20 2012 Tomas Hozza <thozza@redhat.com> - 12:4.2.4-12.P1
df4638
- dhclient-script: fixed CONFIG variable value passed to need_config (#848858)
df4638
- dhclient-script: calling dhclient-up-hooks after setting up route, gateways
df4638
                   & interface alias (#848869)
df4638
df4638
* Fri Aug 17 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-11.P1
df4638
- don't build libdst, it hasn't been used since 4.2.0 (#849166)
df4638
df4638
* Fri Jul 27 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-10.P1
df4638
- isc_time_nowplusinterval() is not safe with 64-bit time_t (#662254, #789601)
df4638
df4638
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 12:4.2.4-9.P1
df4638
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
df4638
df4638
* Wed Jul 25 2012 Tomas Hozza <thozza@redhat.com> - 12:4.2.4-8.P1
df4638
- Dhclient does not correctly parse zero-length options in
df4638
  dhclient6.leases (#633318)
df4638
df4638
* Wed Jul 25 2012 Tomas Hozza <thozza@redhat.com> - 12:4.2.4-7.P1
df4638
- 4.2.4-P1: fix for CVE-2012-3570 CVE-2012-3571 and CVE-2012-3954 (#842892)
df4638
df4638
* Mon Jul 23 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-6
df4638
- ib.patch: added fall-back method (using ioctl(SIOCGIFHWADDR)) when getting
df4638
            of HW address with getifaddrs() fails (#626514-c#63, #840601).
df4638
df4638
* Mon Jul 23 2012 Tomas Hozza <thozza@redhat.com> - 12:4.2.4-5
df4638
- Dhcpd does not correctly follow DhcpFailOverPeerDN (#838400)
df4638
df4638
* Wed Jul 18 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-4
df4638
- allow dhcpd to listen on alias interfaces (#840601)
df4638
df4638
* Mon Jul 09 2012 Tomas Hozza <thozza@redhat.com> - 12:4.2.4-3
df4638
- changed list of %%verify on the leases files (#837474)
df4638
df4638
* Mon Jun 18 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-2
df4638
- define $SAVEDIR in dhclient-script (#833054)
df4638
df4638
* Wed Jun 06 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-1
df4638
- 4.2.4
df4638
df4638
* Tue Jun 05 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-0.8.rc2
df4638
- return prematurely removed 12-dhcpd (NM dispatcher script) (#828522)
df4638
df4638
* Fri May 25 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-0.7.rc2
df4638
- getifaddrs.patch: use HAVE_SA_LEN macro
df4638
df4638
* Wed May 23 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-0.6.rc2
df4638
- 4.2.4rc2
df4638
df4638
* Mon May 07 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-0.5.rc1
df4638
- dhcpd.service: explicitly add -cf to indicate what conf file we use (#819325)
df4638
- no need to copy /etc/*.conf to /etc/dhcp/*.conf in %%prep anymore
df4638
df4638
* Tue May 01 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-0.4.rc1
df4638
- 4.2.4rc1
df4638
df4638
* Thu Apr 26 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-0.3.b1
df4638
- remove inherit-leases.patch - it's probably not needed anymore (#815355)
df4638
df4638
* Wed Apr 18 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-0.2.b1
df4638
- update paths.patch and source URL
df4638
df4638
* Mon Apr 16 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.4-0.1.b1
df4638
- 4.2.4b1: noprefixavail.patch merged upstream
df4638
df4638
* Fri Mar 30 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-25.P2
df4638
- move dhclient & dhclient-script from /sbin to /usr/sbin
df4638
df4638
* Fri Mar 23 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-24.P2
df4638
- one more fix (#806342)
df4638
df4638
* Fri Mar 23 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-23.P2
df4638
- improve #449946 fix (#806342)
df4638
df4638
* Wed Mar 21 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-22.P2
df4638
- RFC5970 - DHCPv6 Options for Network Boot (#798735)
df4638
df4638
* Wed Mar 21 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-21.P2
df4638
- don't use fallback_interface when releasing lease (#800561)
df4638
df4638
* Wed Mar 21 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-20.P2
df4638
- use getifaddrs() to scan for interfaces on Linux (#449946)
df4638
df4638
* Wed Feb 22 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-19.P2
df4638
- don't send log messages to the standard error descriptor by default (#790387)
df4638
df4638
* Mon Feb 13 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-18.P2
df4638
- -timeout option (command line) with value 3 or less was driving dhclient mad (#789719)
df4638
df4638
* Tue Feb 07 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-17.P2
df4638
- dhclient-script: install link-local static routes with correct scope (#787318)
df4638
df4638
* Wed Feb  1 2012 Adam Williamson <awilliam@redhat.com> - 12:4.2.3-16.P2
df4638
- rebuild for new bind-libs-lite
df4638
df4638
* Tue Jan 31 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-15.P2
df4638
- revert previous change (#782499)
df4638
- remove the rest of the sysvinit scriptlets
df4638
df4638
* Tue Jan 17 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-14.P2
df4638
- use PrivateTmp=true in service files (#782499)
df4638
df4638
* Fri Jan 13 2012 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-13.P2
df4638
- 4.2.3-P2: fix for CVE-2011-4868 (#781246)
df4638
- clean up old Provides and Obsoletes
df4638
df4638
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 12:4.2.3-12.P1
df4638
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
df4638
df4638
* Wed Dec 21 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-11.P1
df4638
- revert change made in 4.2.3-3 because of failing failover inicialization (#765967)
df4638
  the procedure is now:
df4638
  init lease file, init failover, init PID file, change effective user/group ID
df4638
- don't need to fix lease files ownership before starting service
df4638
- dhclient-script: allow static route with a 0.0.0.0 next-hop address (#769463)
df4638
df4638
* Tue Dec 20 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-10.P1
df4638
- hopefully we don't need 12-dhcpd anymore as 'After=network.target'
df4638
  in dhcpd[6].service should take care of the original problem (#565921)
df4638
df4638
* Mon Dec 19 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-9.P1
df4638
- don't ship legacy SysV initscripts
df4638
- dhcpd6: move '-cf /etc/dhcp/dhcpd6.conf' from sysconfig/dhcpd6 to dhcpd6.service
df4638
- run 'chown -R dhcpd:dhcpd /var/lib/dhcpd/' before starting dhcpd/dhcpd6 service
df4638
  for the case where leases file is owned by root:root as a
df4638
  consequence of running dhcpd without '-user dhcpd -group dhcpd' (#744292)
df4638
df4638
* Fri Dec 09 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-8.P1
df4638
- 4.2.3-P1: fix for CVE-2011-4539 (#765681)
df4638
df4638
* Thu Nov 24 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-7
df4638
- Send DHCPDECLINE and exit(2) when duplicate address was detected and
df4638
  dhclient had been started with '-1' (#756759).
df4638
- Don't build with -D_GNU_SOURCE, configure.ac uses AC_USE_SYSTEM_EXTENSIONS
df4638
df4638
* Mon Nov 14 2011 Adam Tkac <atkac redhat com> - 12:4.2.3-6
df4638
- rebuild against new bind
df4638
df4638
* Fri Nov 11 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-5
df4638
- dhclient-script: arping address in BOUND|RENEW|REBIND|REBOOT (#752116)
df4638
df4638
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 12:4.2.3-4
df4638
- Rebuilt for glibc bug#747377
df4638
df4638
* Wed Oct 26 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-3
df4638
- Write lease file AFTER changing of the effective user/group ID.
df4638
- Move omshell from dhcp-common to main package (where it originally was).
df4638
df4638
* Thu Oct 20 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-2
df4638
- Write PID file BEFORE changing of the effective user/group ID.
df4638
- Really define _hardened_build this time
df4638
df4638
* Thu Oct 20 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-1
df4638
- 4.2.3
df4638
df4638
* Tue Oct 18 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.3-0.1.rc1
df4638
- 4.2.3rc1
df4638
df4638
* Sun Oct 09 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.2-12
df4638
- change ownership of /var/lib/dhcpd/ to dhcpd:dhcpd (#744292)
df4638
- no need to drop capabilies in dhcpd since it's been running as regular user
df4638
df4638
* Fri Sep 30 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.2-11
df4638
- 56dhclient: ifcfg file was not sourced (#742482)
df4638
df4638
* Thu Sep 29 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.2-10
df4638
- dhclient-script: address alias handling fixes from Scott Shambarger (#741786)
df4638
df4638
* Thu Sep 22 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.2-9
df4638
- dhclient-script: do not backup&restore /etc/resolv.conf and /etc/localtime.
df4638
df4638
* Wed Sep 21 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.2-8
df4638
- SystemTap support: spec file change, some dummy probes, tapset, simple script
df4638
df4638
* Mon Sep 19 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.2-7
df4638
- Support for IPoIB (IP over InfiniBand) interfaces (#660681)
df4638
- Hopefully last tweak of adding of user and group (#699713)
df4638
df4638
* Fri Sep 09 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.2-6
df4638
- PIE-RELRO.patch is not needed anymore, defining _hardened_build does the same
df4638
- One more tweak of adding of user and group (#699713)
df4638
df4638
* Fri Sep 09 2011 Adam Tkac <atkac redhat com> - 12:4.2.2-5
df4638
- rebuild against new bind
df4638
df4638
* Fri Aug 26 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.2-4
df4638
- Fix adding of user and group (#699713)
df4638
df4638
* Fri Aug 19 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.2-3
df4638
- Tighten explicit libs sub-package requirement so that it includes
df4638
  the correct architecture as well.
df4638
df4638
* Fri Aug 12 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.2-2
df4638
- #699713:
df4638
  - Use '--enable-paranoia --enable-early-chroot' configure flags
df4638
  - Create/delete dhcpd user in %%post/%%postun
df4638
  - Run dhcpd/dhcpd6 services with '-user dhcpd -group dhcpd'
df4638
df4638
* Thu Aug 11 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.2-1
df4638
- 4.2.2: fix for CVE-2011-2748, CVE-2011-2749 (#729850)
df4638
df4638
* Wed Aug 10 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.2-0.4.rc1
df4638
- Do not ship default /etc/dhcp/dhclient.conf (#560361,c#9)
df4638
df4638
* Mon Jul 25 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.2-0.3.rc1
df4638
- Improve capabilities patch to be able to run with PARANOIA & EARLY_CHROOT (#699713)
df4638
df4638
* Mon Jul 18 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.2-0.2.rc1
df4638
- 4.2.2rc1
df4638
df4638
* Fri Jul 01 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.2-0.1.b1
df4638
- 4.2.2b1: upstream merged initialization-delay.patch
df4638
- Drop all capabilities in dhcpd/dhcrelay (#699713)
df4638
df4638
* Fri Jun 17 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.1-12.P1
df4638
- Removed upstream-merged IFNAMSIZ.patch
df4638
- Polished patches according to results from static analysis of code.
df4638
df4638
* Thu Jun 16 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.1-11.P1
df4638
- Add triggerpostun scriptlet tied to dhcp-sysvinit
df4638
- Make it possible to build without downstream patches (Kamil Dudka)
df4638
df4638
* Tue May 17 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.1-10.P1
df4638
- Fix typo in triggerun scriptlet (#705417)
df4638
df4638
* Mon May 16 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.1-9.P1
df4638
- Packages dhcp/dhclient/dhcp-common explicitly require the libs sub-package
df4638
  with the same version and release (bug #705037).
df4638
- Fix triggerun scriptlet
df4638
df4638
* Mon May 09 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.1-8.P1
df4638
- Fix 11-dhclient to export variables (#702735)
df4638
df4638
* Fri Apr 29 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.1-7.P1
df4638
- Comply with guidelines for systemd services
df4638
df4638
* Wed Apr 27 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.1-6.P1
df4638
- Fix NetworkManager dispatcher script for dhcpd to support arbitrary interface names
df4638
df4638
* Wed Apr 06 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.1-5.P1
df4638
- Better fix for CVE-2011-0997: making domain-name check more lenient (#694005)
df4638
df4638
* Wed Apr 06 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.1-4.P1
df4638
- 4.2.1-P1: fix for CVE-2011-0997 (#694005)
df4638
df4638
* Fri Mar 25 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.1-3
df4638
- Polished patches according to results from static analysis of code.
df4638
df4638
* Mon Mar 07 2011 Rex Dieter <rdieter@fedoraproject.org> - 12:4.2.1-2
df4638
- rebuild (bind)
df4638
df4638
* Wed Mar 02 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.1-1
df4638
- 4.2.1
df4638
df4638
* Wed Feb 23 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.1-0.6.rc1
df4638
- 4.2.1rc1
df4638
- Fixed typo in dhclient.leases(5) (#676284)
df4638
df4638
* Mon Feb 21 2011 Adam Tkac <atkac redhat com> - 12:4.2.1-0.5.b1
df4638
- rebuild against new bind-libs-lite
df4638
df4638
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 12:4.2.1-0.4.b1
df4638
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
df4638
df4638
* Mon Jan 31 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.1-0.3.b1
df4638
- Prevent anything under _docdir from being scanned. (#674058)
df4638
df4638
* Fri Jan 28 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.1-0.2.b1
df4638
- dhclient-script improvements, thanks to Ville Skyttä (#672279)
df4638
df4638
* Thu Jan 27 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.1-0.1.b1
df4638
- 4.2.1b1: fix for CVE-2011-0413 (#672996)
df4638
- No longer need invalid-dhclient-conf, parse_date and release6-elapsed patches
df4638
df4638
* Thu Jan 13 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-26.P2
df4638
- Fix loading of configuration when LDAP is used (#668276)
df4638
df4638
* Mon Jan 03 2011 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-25.P2
df4638
- Fix OMAPI (#666441)
df4638
df4638
* Tue Dec 21 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-24.P2
df4638
- Provide default /etc/dhcp/dhclient.conf
df4638
- Client always sends dhcp-client-identifier (#560361)
df4638
df4638
* Wed Dec 15 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-23.P2
df4638
- Add dhcp-common subpackage (#634673)
df4638
df4638
* Mon Dec 13 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-22.P2
df4638
- 4.2.0-P2: fix for CVE-2010-3616 (#662326)
df4638
- Use upstream fix for #628258
df4638
- Provide versioned symbols for rpmlint
df4638
df4638
* Tue Dec 07 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-21.P1
df4638
- Porting dhcpd/dhcpd6/dhcrelay services from SysV to Systemd
df4638
df4638
* Tue Nov 23 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-20.P1
df4638
- Remove explicit Obsoletes (#656310)
df4638
df4638
* Fri Nov 19 2010 Dan Horák <dan[at]danny.cz> - 12:4.2.0-19.P1
df4638
- fix build on sparc and s390
df4638
df4638
* Tue Nov 09 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-18.P1
df4638
- Applied Patrik Lahti's patch for DHCPv6 over PPP support (#626514)
df4638
df4638
* Fri Nov 05 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-17.P1
df4638
- fix broken dependencies
df4638
df4638
* Thu Nov 04 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-16.P1
df4638
- 4.2.0-P1: fix for CVE-2010-3611 (#649880)
df4638
- dhclient-script: when updating 'search' statement in resolv.conf,
df4638
  add domain part of hostname if it's not already there (#637763)
df4638
df4638
* Wed Oct 20 2010 Adam Tkac <atkac redhat com> - 12:4.2.0-15
df4638
- build dhcp's libraries as shared libs instead of static libs
df4638
df4638
* Wed Oct 20 2010 Adam Tkac <atkac redhat com> - 12:4.2.0-14
df4638
- fire away bundled BIND source
df4638
df4638
* Wed Oct 20 2010 Adam Tkac <atkac redhat com> - 12:4.2.0-13
df4638
- improve PIE patch (build libraries with -fpic, not with -fpie)
df4638
df4638
* Wed Oct 13 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-12
df4638
- Server was ignoring client's
df4638
  Solicit (where client included address/prefix as a preference) (#634842)
df4638
df4638
* Thu Oct 07 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-11
df4638
- Use ping instead of arping in dhclient-script to handle
df4638
  not-on-local-net gateway in ARP-less device (#524298)
df4638
df4638
* Thu Oct 07 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-10
df4638
- Check whether there is any unexpired address in previous lease
df4638
  prior to confirming (INIT-REBOOT) the lease (#585418)
df4638
df4638
* Mon Oct 04 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-9
df4638
- RFC 3442 - ignore Router option only if
df4638
  Classless Static Routes option contains default router
df4638
df4638
* Thu Sep 30 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-8
df4638
- Explicitly clear the ARP cache and flush all addresses & routes
df4638
  instead of bringing the interface down (#574568)
df4638
df4638
* Tue Sep 07 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-7
df4638
- Hardening dhcpd/dhcrelay/dhclient by making them PIE & RELRO
df4638
df4638
* Thu Sep 02 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-6
df4638
- Another fix for handling time values on 64-bit platforms (#628258)
df4638
df4638
* Wed Sep 01 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-5
df4638
- Fix parsing of lease file dates & times on 64-bit platforms (#628258)
df4638
df4638
* Tue Aug 31 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-4
df4638
- RFC 3442 - Classless Static Route Option for DHCPv4 (#516325)
df4638
df4638
* Fri Aug 20 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-3
df4638
- Add DHCRELAYARGS variable to /etc/sysconfig/dhcrelay
df4638
df4638
* Fri Jul 30 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-2
df4638
- Add 12-dhcpd NM dispatcher script (#565921)
df4638
- Rename 10-dhclient to 11-dhclient (10-sendmail already exists)
df4638
df4638
* Wed Jul 21 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.2.0-1
df4638
- 4.2.0: includes ldap-for-dhcp
df4638
df4638
* Mon Jul 12 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-26.P1
df4638
- Add LICENSE file to dhclient subpackage.
df4638
df4638
* Thu Jul 01 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-25.P1
df4638
- Adhere to Static Library Packaging Guidelines (#609605)
df4638
df4638
* Tue Jun 29 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-24.P1
df4638
- Fix parsing of date (#514828)
df4638
df4638
* Thu Jun 03 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-23.P1
df4638
- 4.1.1-P1: pair of bug fixes including one for CVE-2010-2156 (#601405)
df4638
- Compile with -fno-strict-aliasing
df4638
df4638
* Mon May 03 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-22
df4638
- Fix the initialization-delay.patch (#587070)
df4638
df4638
* Thu Apr 29 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-21
df4638
- Cut down the 0-4 second delay before sending first DHCPDISCOVER (#587070)
df4638
df4638
* Wed Apr 28 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-20
df4638
- Move /etc/NetworkManager/dispatcher.d/10-dhclient script
df4638
  from dhcp to dhclient subpackage (#586999)
df4638
df4638
* Wed Apr 28 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-19
df4638
- Add domain-search to the list of default requested DHCP options (#586906)
df4638
df4638
* Wed Apr 21 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-18
df4638
- If the Reply was received in response to Renew or Rebind message,
df4638
  client adds any new addresses in the IA option to the IA (#578097)
df4638
df4638
* Mon Apr 19 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-17
df4638
- Fill in Elapsed Time Option in Release/Decline messages (#582939)
df4638
df4638
* Thu Mar 25 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-16
df4638
- In client initiated message exchanges stop retransmission
df4638
  upon reaching the MRD rather than at some point after it (#559153)
df4638
df4638
* Wed Mar 24 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-15
df4638
- In dhclient-script check whether bound address
df4638
  passed duplicate address detection (DAD) (#559147)
df4638
- If the bound address failed DAD (is found to be in use on the link),
df4638
  the dhcpv6 client sends a Decline message to the server
df4638
  as described in section 18.1.7 of RFC-3315 (#559147)
df4638
df4638
* Fri Mar 19 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-14
df4638
- Fix UseMulticast.patch to not repeatedly parse dhcpd.conf for unicast option
df4638
- Fix dhclient-script to set interface MTU only when it's greater than 576 (#574629)
df4638
df4638
* Fri Mar 12 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-13
df4638
- Discard unicast Request/Renew/Release/Decline message
df4638
  (unless we set unicast option) and respond with Reply
df4638
  with UseMulticast Status Code option (#573090)
df4638
- Remove DHCPV6 OPERATION section from dhclient.conf.5
df4638
  describing deprecated 'send dhcp6.oro' syntax
df4638
df4638
* Thu Feb 25 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-12
df4638
- Fix paths in man pages (#568031)
df4638
- Remove odd tests in %%preun
df4638
df4638
* Mon Feb 22 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-11
df4638
- Add interface-mtu to the list of default requested DHCP options (#566873)
df4638
df4638
* Fri Feb 19 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-10
df4638
- Fix pm-utils/sleep.d/ directory ownership conflict
df4638
df4638
* Fri Feb 19 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-9
df4638
- In dhclient-script:
df4638
  - use ip command options '-4' or '-6' as shortcuts for '-f[amily] inet' resp. '-f[amily] inet6'
df4638
  - do not use IP protocol family identifier with 'ip link'
df4638
df4638
* Thu Feb 18 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-8
df4638
- Fix installation of pm-utils script (#479639, c#16)
df4638
df4638
* Tue Feb 16 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-7
df4638
- ldap-for-dhcp-4.1.1-2 (#564810)
df4638
df4638
* Tue Feb 16 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-6
df4638
- Fix ldap patch to explicitly link with liblber (#564810)
df4638
df4638
* Mon Feb 08 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-5
df4638
- Fix dhclient-decline-backoff.patch (#562854)
df4638
df4638
* Fri Feb 05 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-4
df4638
- Fix dhclient-script to delete address which the client is going to release
df4638
  as soon as it begins the Release message exchange process (#559142)
df4638
df4638
* Wed Feb 03 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-3
df4638
- move /etc/dhcp.conf to /etc/dhcp.conf.rpmsave in %%post (#561094)
df4638
- document -nc option in dhclient(8) man page
df4638
df4638
* Tue Feb 02 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-2
df4638
- Fix capability patch (#546765)
df4638
df4638
* Wed Jan 20 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.1-1
df4638
- Upgraded to ISC dhcp-4.1.1
df4638
df4638
* Mon Jan 18 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.0p1-18
df4638
- Hide startup info when starting dhcpd6 service.
df4638
- Remove -TERM from calling killproc when stopping dhcrelay (#555672)
df4638
df4638
* Fri Jan 15 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.0p1-17
df4638
- Added init script to also start dhcpd for IPv6 (#552453)
df4638
- Added dhcpd6.conf.sample
df4638
df4638
* Thu Jan 07 2010 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.0p1-16
df4638
- Use %%global instead of %%define.
df4638
df4638
* Mon Dec 14 2009 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.0p1-15
df4638
- dhclient logs its pid to make troubleshooting NM managed systems
df4638
  with multiple dhclients running easier (#546792)
df4638
df4638
* Mon Nov 23 2009 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.0p1-14
df4638
- Honor DEFROUTE=yes|no for all connection types (#530209)
df4638
df4638
* Fri Oct 30 2009 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.0p1-13
df4638
- Make dhclient-script add IPv6 address to interface (#531997)
df4638
df4638
* Tue Oct 13 2009 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.0p1-12
df4638
- Fix 56dhclient so network comes back after suspend/hibernate (#527641)
df4638
df4638
* Thu Sep 24 2009 Jiri Popelka <jpopelka@redhat.com> - 12:4.1.0p1-11
df4638
- Make dhcpd and dhcrelay init scripts LSB compliant (#522134, #522146)
df4638
df4638
* Mon Sep 21 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0p1-10
df4638
- Obsolete the dhcpv6 and dhcpv6-client packages
df4638
df4638
* Fri Sep 18 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0p1-9
df4638
- Update dhclient-script with handlers for DHCPv6 states
df4638
df4638
* Wed Aug 26 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0p1-8
df4638
- Conditionalize restorecon calls in post scriptlets (#519479)
df4638
df4638
* Wed Aug 26 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0p1-7
df4638
- Do not require policycoreutils for post scriptlet (#519479)
df4638
df4638
* Fri Aug 21 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0p1-6
df4638
- BR libcap-ng-devel (#517649)
df4638
df4638
* Tue Aug 18 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0p1-5
df4638
- Drop unnecessary capabilities in dhclient (#517649)
df4638
df4638
* Fri Aug 14 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0p1-4
df4638
- Upgrade to latest ldap-for-dhcp patch which makes sure that only
df4638
  dhcpd links with OpenLDAP (#517474)
df4638
df4638
* Wed Aug 12 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0p1-3
df4638
- Update NetworkManager dispatcher script to remove case conversion
df4638
  and source /etc/sysconfig/network
df4638
df4638
* Thu Aug 06 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0p1-2
df4638
- Add /usr/lib[64]/pm-utils/sleep.d/56dhclient to handle suspend and
df4638
  resume with active dhclient leases (#479639)
df4638
df4638
* Wed Aug 05 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0p1-1
df4638
- Upgrade to dhcp-4.1.0p1, which is the official upstream release to fix
df4638
  CVE-2009-0692
df4638
df4638
* Wed Aug 05 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-27
df4638
- Fix for CVE-2009-0692
df4638
- Fix for CVE-2009-1892 (#511834)
df4638
df4638
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 12:4.1.0-26
df4638
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
df4638
df4638
* Thu Jul 23 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-25
df4638
- Include NetworkManager dispatcher script to run dhclient.d scripts (#459276)
df4638
df4638
* Thu Jul 09 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-24
df4638
- Ensure 64-bit platforms parse lease file dates & times correctly (#448615)
df4638
df4638
* Thu Jul 09 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-23
df4638
- Upgrade to ldap-for-dhcp-4.1.0-4
df4638
df4638
* Wed Jul 01 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-22
df4638
- Set permissions on /etc/dhcp to 0750 (#508247)
df4638
- Update to new ldap-for-dhcp patch set
df4638
- Correct problems when upgrading from a previous release and your
df4638
  dhcpd.conf file not being placed in /etc/dhcp (#506600)
df4638
df4638
* Fri Jun 26 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-21
df4638
- Handle cases in add_timeout() where the function is called with a NULL
df4638
  value for the 'when' parameter (#506626)
df4638
- Fix SELinux denials in dhclient-script when the script makes backup
df4638
  configuration files and restores them later (#483747)
df4638
df4638
* Wed May 06 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-20
df4638
- Obsolete libdhcp4client <= 12:4.0.0-34.fc10 (#499290)
df4638
df4638
* Mon Apr 20 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-19
df4638
- Restrict interface names given on the dhcpd command line to length
df4638
  IFNAMSIZ or shorter (#441524)
df4638
- Change to /etc/sysconfig/network-scripts in dhclient-script before
df4638
  calling need_config or source_config (#496233)
df4638
df4638
* Mon Apr 20 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-18
df4638
- Make dhclient-script work with pre-configured wireless interfaces (#491157)
df4638
df4638
* Thu Apr 16 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-17
df4638
- Fix setting default route when client IP address changes (#486512, #473658)
df4638
- 'reload' and 'try-restart' on dhcpd and dhcrelay init scripts
df4638
  will display usage information and return code 3
df4638
df4638
* Mon Apr 13 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-16
df4638
- Correct %%post problems in dhclient package (#495361)
df4638
- Read hooks scripts from /etc/dhcp (#495361)
df4638
- Update to latest ldap-for-dhcp
df4638
df4638
* Fri Apr 03 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-15
df4638
- Obsolete libdhcp and libdhcp-devel (#493547)
df4638
df4638
* Thu Apr 02 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-14
df4638
- Obsolete libdhcp and libdhcp-devel (#493547)
df4638
df4638
* Tue Mar 31 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-13
df4638
- dhclient obsoletes libdhcp4client (#493213)
df4638
- dhcp-devel obsolets libdhcp4client-devel (#493213)
df4638
df4638
* Wed Mar 11 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-12
df4638
- Fix problems with dhclient.d script execution (#488864)
df4638
df4638
* Mon Mar 09 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-11
df4638
- Use LDAP configuration patch from upstream tarball
df4638
df4638
* Thu Mar 05 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-10
df4638
- restorecon fixes for /etc/localtime and /etc/resolv.conf (#488470)
df4638
df4638
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 12:4.1.0-9
df4638
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
df4638
df4638
* Wed Feb 18 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-8
df4638
- Correct subsystem execution in dhclient-script (#486251)
df4638
df4638
* Wed Feb 18 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-7
df4638
- Do not segfault if the ipv6 kernel module is not loaded (#486097)
df4638
df4638
* Mon Feb 16 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-6
df4638
- Enable dhcpv6 support (#480798)
df4638
- Fix config file migration in scriptlets (#480543)
df4638
- Allow dhclient-script expansion with /etc/dhcp/dhclient.d/*.sh scripts
df4638
df4638
* Thu Jan 15 2009 Tomas Mraz <tmraz@redhat.com> - 12:4.1.0-5
df4638
- rebuild with new openssl
df4638
df4638
* Tue Jan 13 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-4
df4638
- Updated LSB init script header to reference /etc/dhcp/dhcpd.conf (#479012)
df4638
df4638
* Sun Jan 11 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-3
df4638
- Correct syntax errors in %%post script (#479012)
df4638
df4638
* Sat Jan 10 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-2
df4638
- Make sure all /etc/dhcp config files are marked in the manifest
df4638
- Include new config file directies in the dhcp and dhclient packages
df4638
- Do not overwrite new config files if they already exist
df4638
df4638
* Tue Jan 06 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-1
df4638
- Upgraded to ISC dhcp-4.1.0
df4638
- Had to rename the -T option to -timeout as ISC is now using -T
df4638
- Allow package rebuilders to easily enable DHCPv6 support with:
df4638
      rpmbuild --with DHCPv6 dhcp.spec
df4638
  Note that Fedora is still using the 'dhcpv6' package, but some
df4638
  users may want to experiment with the ISC DHCPv6 implementation
df4638
  locally.
df4638
df4638
* Thu Dec 18 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-34
df4638
- Move /etc/dhclient.conf to /etc/dhcp/dhclient.conf
df4638
- Move /etc/dhcpd.conf to /etc/dhcp/dhcpd.conf
df4638
df4638
* Thu Dec 18 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-33
df4638
- Remove unnecessary success/failure lines in init scripts (#476846)
df4638
df4638
* Wed Dec 03 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-32
df4638
- Enable LDAP/SSL support in dhcpd (#467740)
df4638
- Do not calculate a prefix for an address we did not receive (#473885)
df4638
- Removed libdhcp4client because libdhcp has been removed from Fedora
df4638
df4638
* Wed Oct 29 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-31
df4638
- Use O_CLOEXEC in open(2) calls and "e" mode in fopen(3) calls, build
df4638
  with -D_GNU_SOURCE so we pick up O_CLOEXEC (#468984)
df4638
- Add missing prototype for validate_port() in common/inet.c
df4638
df4638
* Thu Oct 23 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-30
df4638
- Fix dhclient.conf man page and sample config file to say 'supersede
df4638
  domain-search', which is what was actually demonstrated (#467955)
df4638
df4638
* Wed Oct 01 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-29
df4638
- Make sure /etc/resolv.conf has restorecon run on it (#451560)
df4638
df4638
* Tue Sep 30 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-28
df4638
- Forgot to actually include <errno.h> (#438149)
df4638
df4638
* Tue Sep 30 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-27
df4638
- Fix patch fuzziness and include errno.h in includes/dhcpd.h (#438149)
df4638
df4638
* Tue Sep 30 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-26
df4638
- Validate port numbers for dhclient, dhcpd, and dhcrelay to ensure
df4638
  that are within the correct range (#438149)
df4638
df4638
* Mon Sep 29 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-25
df4638
- Fix dhcpd so it can find configuration data via LDAP (#452985)
df4638
df4638
* Tue Sep 16 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-24
df4638
- 'server' -> 'service' in dhclient-script (#462343)
df4638
df4638
* Fri Aug 29 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-23
df4638
- Prevent $metric from being set to '' (#460640)
df4638
- Remove unnecessary warning messages
df4638
- Do not source config file (ifcfg-DEVICE) unless it exists
df4638
df4638
* Sun Aug 24 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-22
df4638
- Add missing '[' to dhclient-script (#459860)
df4638
- Correct test statement in add_default_gateway() in dhclient-script (#459860)
df4638
df4638
* Sat Aug 23 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-21
df4638
- Fix syntax error in dhclient-script (#459860)
df4638
df4638
* Fri Aug 22 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-20
df4638
- Rewrite of /sbin/dhclient-script (make the script a little more readable,
df4638
  discontinue use of ifconfig in favor of ip, store backup copies of orig
df4638
  files in /var rather than in /etc)
df4638
df4638
* Wed Aug 06 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-19
df4638
- Remove 'c' from the domain-search format string in common/tables.c
df4638
- Prevent \032 from appearing in resolv.conf search line (#450042)
df4638
- Restore SELinux context on saved /etc files (#451560)
df4638
df4638
* Sun Aug 03 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 12:4.0.0-18
df4638
- filter out false positive perl requires
df4638
df4638
* Fri Aug 01 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-17
df4638
- Carry over RES_OPTIONS from ifcfg-ethX files to /etc/resolv.conf (#202923)
df4638
- Clean up Requires tags for devel packages
df4638
- Allow SEARCH variable in ifcfg files to override search path (#454152)
df4638
- Do not down interface if there is an active lease (#453982)
df4638
- Clean up how dhclient-script restarts ypbind
df4638
- Set close-on-exec on dhclient.leases for SELinux (#446632)
df4638
df4638
* Sat Jun 21 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-16
df4638
- Remove instaces of \032 in domain search option (#450042)
df4638
- Make 'service dhcpd configtest' display text indicating the status
df4638
df4638
* Fri May 16 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-15
df4638
- Set close-on-exec on dhclient.leases for SELinux (#446632)
df4638
df4638
* Tue Apr 01 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-14
df4638
- Avoid dhclient crash when run via NetworkManager (#439796)
df4638
df4638
* Tue Mar 25 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-13
df4638
- Update dhclient-script to handle domain-search correctly (#437840)
df4638
df4638
* Tue Mar 25 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-12
df4638
- Remove Requires on openldap-server (#432180)
df4638
- Replace CLIENTBINDIR, ETCDIR, DBDIR, and RUNDIR in the man pages with the
df4638
  correct paths
df4638
df4638
* Wed Feb 13 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-11
df4638
- Add missing newline to usage() screen in dhclient
df4638
df4638
* Thu Feb 07 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-10
df4638
- Save conf files adding '.predhclient.$interface' to the name (#306381)
df4638
- Only restore conf files on EXPIRE/FAIL/RELEASE/STOP if there are no other
df4638
  dhclient processes running (#306381)
df4638
df4638
* Wed Feb 06 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-9
df4638
- Match LDAP server option values in stables.c and dhcpd.h (#431003)
df4638
- Fix invalid sprintf() statement in server/ldap.c (#431003)
df4638
df4638
* Wed Feb 06 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-8
df4638
- Remove invalid fclose() patch
df4638
df4638
* Tue Feb 05 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-7
df4638
- Don't leak /var/lib/dhclient/dhclient.leases file descriptors (#429890)
df4638
df4638
* Tue Jan 22 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-6
df4638
- read_function() comes from the LDAP patch, so fix it there
df4638
- Init new struct universe structs in libdhcp4client so we don't crash on
df4638
  multiple DHCP attempts (#428203)
df4638
df4638
* Thu Jan 17 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-5
df4638
- Patch read_function() to handle size_t from read() correctly (#429207)
df4638
df4638
* Wed Jan 16 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-4
df4638
- Fix dhclient.lease file parsing problems (#428785)
df4638
- Disable IPv6 support for now as we already ship dhcpv6 (#428987)
df4638
df4638
* Tue Jan 15 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-3
df4638
- Fix segfault in next_iface4() and next_iface6() (#428870)
df4638
df4638
* Mon Jan 14 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-2
df4638
- -fvisibility fails me again
df4638
df4638
* Mon Jan 14 2008 David Cantrell <dcantrell@redhat.com> - 12:4.0.0-1
df4638
- Upgrade to ISC dhcp-4.0.0 (#426634)
df4638
     - first ISC release to incorporate DHCPv6 protocol support
df4638
     - source tree now uses GNU autoconf/automake
df4638
- Removed the libdhcp4client-static package
df4638