[libvirt PATCH 0/2] virt-qemu-sev-validate: A couple of small fixes

Andrea Bolognani (2): docs: Fix typo in virt-qemu-sev-validate(1) tools: Fix interpreter for virt-qemu-sev-validate docs/manpages/virt-qemu-sev-validate.rst | 2 +- tools/virt-qemu-sev-validate | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) -- 2.38.1

Spotted by Lintian (typo-in-manual-page tag). Signed-off-by: Andrea Bolognani <abologna@redhat.com> --- docs/manpages/virt-qemu-sev-validate.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/manpages/virt-qemu-sev-validate.rst b/docs/manpages/virt-qemu-sev-validate.rst index f5f928603a..fcbe84b0ee 100644 --- a/docs/manpages/virt-qemu-sev-validate.rst +++ b/docs/manpages/virt-qemu-sev-validate.rst @@ -556,7 +556,7 @@ on the virtualization host. In that scenario the only three command line parameters required are for the TIK, TEK and libvirt domain name. It should be able to automatically determine all the other information required. If it still reports a failure, this points -very strongly to the TIK/TEK pair not maching the configured +very strongly to the TIK/TEK pair not matching the configured DH certificate and session blob. The ``--debug`` flag will display hashes and/or hex dumps for various -- 2.38.1

Go through env(1) instead of hardcoding the path to the Python interpreter, as we already do for all other Python scripts. Signed-off-by: Andrea Bolognani <abologna@redhat.com> --- tools/virt-qemu-sev-validate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/virt-qemu-sev-validate b/tools/virt-qemu-sev-validate index 712a4e4593..46a92aa7a0 100755 --- a/tools/virt-qemu-sev-validate +++ b/tools/virt-qemu-sev-validate @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 # # SPDX-License-Identifier: LGPL-2.1-or-later # -- 2.38.1

On a Thursday in 2022, Andrea Bolognani wrote:
Andrea Bolognani (2): docs: Fix typo in virt-qemu-sev-validate(1) tools: Fix interpreter for virt-qemu-sev-validate
docs/manpages/virt-qemu-sev-validate.rst | 2 +- tools/virt-qemu-sev-validate | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
Reviewed-by: Ján Tomko <jtomko@redhat.com> Jano
participants (2)
-
Andrea Bolognani
-
Ján Tomko