[openstack-nova] suppress erroneous output on package install (#785115)

Pádraig Brady pbrady at fedoraproject.org
Fri Jan 27 11:49:41 UTC 2012


commit 6c9d25518fe957be5971ba1d87da045704744349
Author: Pádraig Brady <P at draigBrady.com>
Date:   Fri Jan 27 11:39:39 2012 +0000

    suppress erroneous output on package install (#785115)

 openstack-nova.spec |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/openstack-nova.spec b/openstack-nova.spec
index f5ddc96..c5c3dd2 100644
--- a/openstack-nova.spec
+++ b/openstack-nova.spec
@@ -5,7 +5,7 @@ Version:          2012.1
 # The Release is in form 0.X.tag as per:
 #   http://fedoraproject.org/wiki/Packaging:NamingGuidelines#Pre-Release_packages
 # So for prereleases always increment X
-Release:          0.1.e3%{?dist}
+Release:          0.2.e3%{?dist}
 Summary:          OpenStack Compute (nova)
 
 Group:            Applications/System
@@ -268,7 +268,7 @@ if ! getent passwd nova >/dev/null; then
   useradd -u 162 -r -g nova -G nova,nobody,qemu -d %{_sharedstatedir}/nova -s /sbin/nologin -c "OpenStack Nova Daemons" nova
 fi
 # Add nova to the fuse group (if present) to support guestmount
-if getent group fuse; then
+if getent group fuse >/dev/null; then
   usermod -a -G fuse nova
 fi
 exit 0
@@ -353,6 +353,9 @@ fi
 %endif
 
 %changelog
+* Fri Jan 27 2012 Pádraig Brady <P at draigBrady.com> - 2012.1-0.2.e3
+- Suppress erroneous output to stdout on package install (#785115)
+
 * Thu Jan 26 2012 Pádraig Brady <P at draigBrady.com> - 2012.1-0.1.e3
 - Update to essex milestone 3
 


More information about the scm-commits mailing list