diff --git a/rpcbind.init b/rpcbind.init index 4dcb748..3f67ea6 100755 --- a/rpcbind.init +++ b/rpcbind.init @@ -39,7 +39,7 @@ start() { exit 6 fi # Check that networking is up. - [ "$NETWORKING" = "no" ] || exit 6 + [ "$NETWORKING" = "no" ] && exit 6 [ -f /sbin/$prog ] || exit 5 echo -n $"Starting $prog: " diff --git a/rpcbind.spec b/rpcbind.spec index 78f3eeb..9c4a278 100644 --- a/rpcbind.spec +++ b/rpcbind.spec @@ -2,7 +2,7 @@ Name: rpcbind Version: 0.1.4 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Universal Addresses to RPC Program Number Mapper Group: System Environment/Daemons License: GPL @@ -127,6 +127,10 @@ fi %dir %attr(700,rpc,rpc) /var/lib/rpcbind %changelog +* Tue Oct 16 2007 Steve Dickson 0.1.4-10 +- Corrected a typo in the initscript from previous + commit. + * Mon Oct 15 2007 Steve Dickson 0.1.4-9 - Fixed typo in Summary (bz 331811) - Corrected init script (bz 247046)