Correct links to TLS certificate setup page

When the setup of TLS certs was originally split out of
'docs/remote.html' ( df99aa311a ) links refering to it were not
fixed.

Adjust them to point to the correct document.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
Peter Krempa 2022-04-14 14:20:09 +02:00
parent aa2b8e3b0b
commit fb4d109648
2 changed files with 7 additions and 8 deletions

View File

@ -231,9 +231,8 @@ There are also other causes for connection problems than those related to
error: Cannot access CA certificate '/etc/pki/CA/cacert.pem': No such file or directory
Don't let this error message confuse you. Setting up certificates as
described on the `remote transport
mechanism <remote.html#Remote_certificates>`__ page does not help, as this is
not a certificate related problem.
described on the `tls certificates <kbase/tlscerts.html>`__ page does not
help, as this is not a certificate related problem.
To fix this problem you need to update your libvirt to 0.7.0 or newer. You
may also see this error when you use a libvirt version that contains the ESX

View File

@ -2,7 +2,7 @@
#
# This shell script checks the TLS certificates and options needed
# for the secure client/server support of libvirt as documented at
# https://libvirt.org/remote.html#Remote_certificates
# https://libvirt.org/kbase/tlscerts.html
#
# Copyright (C) 2009-2013 Red Hat, Inc.
#
@ -166,7 +166,7 @@ if [ ! -f "$CA/cacert.pem" ]
then
echo the CA certificate $CA/cacert.pem is missing while it
echo should be installed on both client and servers
echo "see https://libvirt.org/remote.html#Remote_TLS_CA"
echo "see https://libvirt.org/kbase/tlscerts.html#setting-up-a-certificate-authority-ca"
echo on how to install it
exit 1
fi
@ -186,7 +186,7 @@ if [ "$ORG" = "" ]
then
echo the CA certificate $CA/cacert.pem does not define the organization
echo it should probably regenerated
echo "see https://libvirt.org/remote.html#Remote_TLS_CA"
echo "see https://libvirt.org/kbase/tlscerts.html#setting-up-a-certificate-authority-ca"
echo on how to regenerate it
exit 1
fi
@ -234,7 +234,7 @@ then
else
echo Did not find "$LIBVIRT/clientcert.pem" client certificate
echo The machine cannot act as a client
echo "see https://libvirt.org/remote.html#Remote_TLS_client_certificates"
echo "see https://libvirt.org/kbase/tlscerts.html#issuing-client-certificates"
echo on how to regenerate it
CLIENT=0
fi
@ -287,7 +287,7 @@ then
else
echo Did not find $LIBVIRT/servercert.pem server certificate
echo The machine cannot act as a server
echo "see https://libvirt.org/remote.html#Remote_TLS_server_certificates"
echo "see https://libvirt.org/kbase/tlscerts.html#issuing-server-certificates"
echo on how to regenerate it
SERVER=0
fi