mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
tools: fix paths in PKI validation error messages
A couple of paths passed in the error messages, didnt match the paths that were actually being tested. Reviewed-by: Pavel Hrdina <phrdina@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
230d81fc3a
commit
2b80329a6a
@ -184,7 +184,7 @@ virPKIValidateIdentity(bool isServer, bool system, const char *path)
|
||||
_("Checking system cert dir access"),
|
||||
0, 0, 0755,
|
||||
_("The system cert dir %1$s must be accessible to all users. As root, run: chown root.root; chmod 0755 %2$s"),
|
||||
LIBVIRT_PKI_DIR, LIBVIRT_PKI_DIR);
|
||||
LIBVIRT_CERT_DIR, LIBVIRT_CERT_DIR);
|
||||
|
||||
FILE_REQUIRE_EXISTS(scope,
|
||||
LIBVIRT_KEY_DIR,
|
||||
@ -197,7 +197,7 @@ virPKIValidateIdentity(bool isServer, bool system, const char *path)
|
||||
_("Checking system key dir access"),
|
||||
0, 0, 0755,
|
||||
_("The system key dir %1$s must be accessible to all users. As root, run: chown root.root; chmod 0755 %2$s"),
|
||||
LIBVIRT_KEY_DIR, LIBVIRT_PKI_DIR);
|
||||
LIBVIRT_KEY_DIR, LIBVIRT_KEY_DIR);
|
||||
} else if (path) {
|
||||
virNetTLSConfigCustomTrust(path,
|
||||
&cacert,
|
||||
|
Loading…
Reference in New Issue
Block a user