- Correct subsystem execution in dhclient-script (#486251)
This commit is contained in:
parent
f81c3f9d11
commit
29632077ef
@ -358,9 +358,8 @@ dhconfig() {
|
|||||||
if [ -d /etc/dhcp/dhclient.d ]; then
|
if [ -d /etc/dhcp/dhclient.d ]; then
|
||||||
for f in /etc/dhcp/dhclient.d/*.sh ; do
|
for f in /etc/dhcp/dhclient.d/*.sh ; do
|
||||||
if [ -x ${f} ]; then
|
if [ -x ${f} ]; then
|
||||||
subsystem="$(basename ${f} .sh)"
|
subsystem="${f%.sh}"
|
||||||
. ${f}
|
. ${f} "${subsystem}_config"
|
||||||
\${subsystem}_config
|
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
Summary: Dynamic host configuration protocol software
|
Summary: Dynamic host configuration protocol software
|
||||||
Name: dhcp
|
Name: dhcp
|
||||||
Version: 4.1.0
|
Version: 4.1.0
|
||||||
Release: 7%{?dist}
|
Release: 8%{?dist}
|
||||||
# NEVER CHANGE THE EPOCH on this package. The previous maintainer (prior to
|
# NEVER CHANGE THE EPOCH on this package. The previous maintainer (prior to
|
||||||
# dcantrell maintaining the package) made incorrect use of the epoch and
|
# dcantrell maintaining the package) made incorrect use of the epoch and
|
||||||
# that's why it is at 12 now. It should have never been used, but it was.
|
# that's why it is at 12 now. It should have never been used, but it was.
|
||||||
@ -419,6 +419,9 @@ fi
|
|||||||
%attr(0644,root,root) %{_mandir}/man3/omapi.3.gz
|
%attr(0644,root,root) %{_mandir}/man3/omapi.3.gz
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Feb 18 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-8
|
||||||
|
- Correct subsystem execution in dhclient-script (#486251)
|
||||||
|
|
||||||
* Wed Feb 18 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-7
|
* Wed Feb 18 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-7
|
||||||
- Do not segfault if the ipv6 kernel module is not loaded (#486097)
|
- Do not segfault if the ipv6 kernel module is not loaded (#486097)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user