[libvirt] [PATCH 1/2] virt-pki-validate: behave when CERTTOOL is missing

Dan Kenigsberg danken at redhat.com
Sun Feb 20 20:29:25 UTC 2011


---
 tools/virt-pki-validate.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/virt-pki-validate.in b/tools/virt-pki-validate.in
index 207fa76..96659cf 100755
--- a/tools/virt-pki-validate.in
+++ b/tools/virt-pki-validate.in
@@ -14,7 +14,7 @@ PORT=16514
 # First get certtool
 #
 CERTOOL=`which certtool 2>/dev/null`
-if [ ! -x $CERTOOL ]
+if [ ! -x "$CERTOOL" ]
 then
     echo "Could not locate the certtool program"
     echo "make sure the gnutls-utils (or gnutls-bin) package is installed"
-- 
1.7.4




More information about the libvir-list mailing list