- For init script functions, echo new line after OK or FAIL msg (#244956)

This commit is contained in:
David Cantrell 2007-06-20 17:25:50 +00:00
parent 9675569520
commit 434d4dfee7
2 changed files with 6 additions and 1 deletions

View File

@ -10,7 +10,7 @@
Summary: DHCP (Dynamic Host Configuration Protocol) server and relay agent
Name: dhcp
Version: 3.0.5
Release: 36%{?dist}
Release: 37%{?dist}
Epoch: 12
License: ISC
Group: System Environment/Daemons
@ -434,6 +434,9 @@ fi
%{_libdir}/libdhcp4client.a
%changelog
* Wed Jun 20 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-37
- For init script functions, echo new line after OK or FAIL msg (#244956)
* Fri Jun 15 2007 David Cantrell <dcantrell@redhat.com> - 12:3.0.5-36
- BOOTP_BROADCAST_ALWAYS is not the same as ATSFP, fixed
- Added anycast mac support to dhclient for OLPC

View File

@ -53,6 +53,7 @@ start() {
echo -n $"Starting $prog: "
daemon $dhcpd $DHCPDARGS 2>/dev/null
RETVAL=$?
echo
[ $RETVAL = 0 ] && touch $lockfile
return $RETVAL
}
@ -61,6 +62,7 @@ stop() {
echo -n $"Shutting down $prog: "
killproc $prog -TERM
RETVAL=$?
echo
[ $RETVAL = 0 ] && rm -f $lockfile
return $RETVAL
}