1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2024-12-23 21:34:54 +03:00

virt-pki-validate: behave when CERTTOOL is missing

This commit is contained in:
Dan Kenigsberg 2011-02-20 22:29:25 +02:00 committed by Eric Blake
parent ec28eb29b7
commit 9b47915914

View File

@ -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"