- Fix 'restart' mode in init script (#349341)

This commit is contained in:
David Cantrell 2007-10-24 17:47:43 +00:00
parent af3980861c
commit 7803c49666
2 changed files with 6 additions and 3 deletions

View File

@ -13,7 +13,7 @@
Summary: DHCP (Dynamic Host Configuration Protocol) server and relay agent Summary: DHCP (Dynamic Host Configuration Protocol) server and relay agent
Name: dhcp Name: dhcp
Version: 3.1.0 Version: 3.1.0
Release: 1%{?dist} Release: 2%{?dist}
# NEVER CHANGE THE EPOCH on this package. The previous maintainer made # NEVER CHANGE THE EPOCH on this package. The previous maintainer made
# incorrect use of the epoch and that's why it is at 12 now. It should have # incorrect use of the epoch and that's why it is at 12 now. It should have
# never been used, but it was. So we are stuck with it. # never been used, but it was. So we are stuck with it.
@ -435,6 +435,9 @@ fi
%{_libdir}/libdhcp4client.a %{_libdir}/libdhcp4client.a
%changelog %changelog
* Wed Oct 23 2007 David Cantrell <dcantrell@redhat.com> - 12:3.1.0-2
- Fix 'restart' mode in init script (#349341)
* Tue Oct 23 2007 David Cantrell <dcantrell@redhat.com> - 12:3.1.0-1 * Tue Oct 23 2007 David Cantrell <dcantrell@redhat.com> - 12:3.1.0-1
- Upgrade to ISC dhcp-3.1.0 - Upgrade to ISC dhcp-3.1.0
- Remove unnecessary /usr/include/dhcp4client/isc_dhcp headers - Remove unnecessary /usr/include/dhcp4client/isc_dhcp headers

View File

@ -117,7 +117,7 @@ case "$1" in
RETVAL=$? RETVAL=$?
;; ;;
restart|force-reload) restart|force-reload)
stop && start stop ; start
RETVAL=$? RETVAL=$?
;; ;;
try-restart|reload) try-restart|reload)
@ -125,7 +125,7 @@ case "$1" in
;; ;;
condrestart) condrestart)
if [ -f $lockfile ]; then if [ -f $lockfile ]; then
stop && start stop ; start
RETVAL=$? RETVAL=$?
fi fi
;; ;;