- Fix problems with dhclient.d script execution (#488864)
This commit is contained in:
parent
2cca9db02c
commit
91ae67bfa8
@ -364,7 +364,9 @@ dhconfig() {
|
|||||||
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="${f%.sh}"
|
subsystem="${f%.sh}"
|
||||||
. ${f} "${subsystem}_config"
|
subsystem="${subsystem##*/}"
|
||||||
|
. ${f}
|
||||||
|
"${subsystem}_config"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
@ -490,7 +492,9 @@ case "${reason}" in
|
|||||||
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="${f%.sh}"
|
subsystem="${f%.sh}"
|
||||||
. ${f} "${subsystem}_restore"
|
subsystem="${subsystem##*/}"
|
||||||
|
. ${f}
|
||||||
|
"${subsystem}_restore"
|
||||||
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: 11%{?dist}
|
Release: 12%{?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.
|
||||||
@ -413,6 +413,9 @@ fi
|
|||||||
%attr(0644,root,root) %{_mandir}/man3/omapi.3.gz
|
%attr(0644,root,root) %{_mandir}/man3/omapi.3.gz
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Mar 11 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-12
|
||||||
|
- Fix problems with dhclient.d script execution (#488864)
|
||||||
|
|
||||||
* Mon Mar 09 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-11
|
* Mon Mar 09 2009 David Cantrell <dcantrell@redhat.com> - 12:4.1.0-11
|
||||||
- Use LDAP configuration patch from upstream tarball
|
- Use LDAP configuration patch from upstream tarball
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user