summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Tkac <atkac@fedoraproject.org>2007-01-29 13:36:51 +0000
committerAdam Tkac <atkac@fedoraproject.org>2007-01-29 13:36:51 +0000
commitfb3a212e608674b944690788919dca4dc756c625 (patch)
tree1837103c241db25d9081f0a273f24cebb9ddffe2
parentef31ff85e9823b42c9751615eec366a83a5352ca (diff)
redirected output from bind-chroot's prep & preun to /dev/nullbind-9_3_4-2_fc7
-rw-r--r--bind.spec9
1 files changed, 6 insertions, 3 deletions
diff --git a/bind.spec b/bind.spec
index beac555..f8a1564 100644
--- a/bind.spec
+++ b/bind.spec
@@ -17,7 +17,7 @@ Summary: The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) serv
Name: bind
License: BSD-like
Version: 9.3.4
-Release: 1%{?prever}%{?dist}
+Release: 2%{?prever}%{?dist}
Epoch: 31
Url: http://www.isc.org/products/BIND/
Buildroot: %{_tmppath}/%{name}-root
@@ -686,13 +686,13 @@ fi;
%post chroot
if [ "$1" -gt 0 ]; then
- . /usr/sbin/bind-chroot-admin --enable;
+ . /usr/sbin/bind-chroot-admin --enable > /dev/null 2>&1;
fi;
:;
%preun chroot
if [ "$1" -eq 0 ]; then
- . /usr/sbin/bind-chroot-admin --disable;
+ . /usr/sbin/bind-chroot-admin --disable > /dev/null 2>&1;
fi
:;
@@ -743,6 +743,9 @@ rm -rf ${RPM_BUILD_ROOT}
:;
%changelog
+* Mon Jan 29 2007 Adam Tkac <atkac@redhat.com> 31:9.3.4-2.fc7
+- redirected output from bind-chroot prep and preun stages to /dev/null
+
* Wed Jan 25 2007 Adam Tkac <atkac@redhat.com> 31:9.3.4-1.fc7
- updated to version 9.3.4 which contains security bugfixes