28 lines
859 B
Diff
28 lines
859 B
Diff
From 9679cde15cabf95c7538c3b6929893ec68552d23 Mon Sep 17 00:00:00 2001
|
|
From: Dan Kenigsberg <danken@redhat.com>
|
|
Date: Sun, 20 Feb 2011 22:29:25 +0200
|
|
Subject: [PATCH 3/6] virt-pki-validate: behave when CERTTOOL is missing
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=680270
|
|
libvirt-client is missing some dependencies
|
|
---
|
|
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.3.4
|
|
|