summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Tkac <atkac@fedoraproject.org>2007-09-05 09:56:24 +0000
committerAdam Tkac <atkac@fedoraproject.org>2007-09-05 09:56:24 +0000
commit1c2862240772badf75140d7e930039595832a08a (patch)
tree1da6f46f150b21bf229f9b3fcaffea1a60ed524c
parent10a7d952250bdcc9ade2d608fad5878eadd1f31d (diff)
downloadbind-1c2862240772badf75140d7e930039595832a08a.tar.gz
bind-1c2862240772badf75140d7e930039595832a08a.tar.xz
bind-1c2862240772badf75140d7e930039595832a08a.zip
- initscript failure message is now printed correctly (#277981, Quentinbind-9_5_0-11_3_a6_fc8
Armitage (quentin armitage org uk) )
-rw-r--r--bind.spec6
-rwxr-xr-xnamed.init2
2 files changed, 6 insertions, 2 deletions
diff --git a/bind.spec b/bind.spec
index c4179cb..2779680 100644
--- a/bind.spec
+++ b/bind.spec
@@ -21,7 +21,7 @@ Summary: The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) serv
Name: bind
License: ISC
Version: 9.5.0
-Release: 11.2.%{RELEASEVER}%{?dist}
+Release: 11.3.%{RELEASEVER}%{?dist}
Epoch: 32
Url: http://www.isc.org/products/BIND/
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -646,6 +646,10 @@ rm -rf ${RPM_BUILD_ROOT}
%{_sbindir}/bind-chroot-admin
%changelog
+* Wed Sep 05 2007 Adam Tkac <atkac redhat com> 32:9.5.0-11.3.a6
+- initscript failure message is now printed correctly (#277981,
+ Quentin Armitage (quentin armitage org uk) )
+
* Mon Sep 03 2007 Adam Tkac <atkac redhat com> 32:9.5.0-11.2.a6
- temporary revert ISC 2119 change and add "libbind-errno" patch
(#254501) again
diff --git a/named.init b/named.init
index 4b1e5a1..0de842b 100755
--- a/named.init
+++ b/named.init
@@ -137,12 +137,12 @@ start()
[ -x /usr/bin/logger ] && echo "$named_err" | /usr/bin/logger -pdaemon.error -tnamed;
exit 2;
fi;
+ echo
if [ $RETVAL -eq 0 ]; then
touch /var/lock/subsys/named;
else
exit 7;
fi
- echo
return 0;
}