virt-manager-3.2.0-14.el9

- man: fix default value for filesystem accessmode option (rhbz#2045932)

Related: rhbz#2045932
This commit is contained in:
Jonathon Jongsma 2022-02-09 11:55:56 -06:00
parent 9415bc6cca
commit 41a22cb901
2 changed files with 40 additions and 1 deletions

View File

@ -0,0 +1,35 @@
From 63a722890fa74f1f79346ebc2c4e158882d2bc0f Mon Sep 17 00:00:00 2001
From: Jonathon Jongsma <jjongsma@redhat.com>
Date: Tue, 8 Feb 2022 12:59:11 -0600
Subject: [PATCH] man: fix default value for filesystem accessmode option
Commit 85307b9bd2971cfc972c976c78e411f018647861 changed the default
value for 'accessmode' from 'passthrough' to 'mapped', but forgot to
update the documentation in the man page.
Signed-off-by: Jonathon Jongsma <jjongsma@redhat.com>
(cherry picked from commit 17cd4477b8b18051c5bc4d57da5ca611cfd2d372)
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=2045932
Signed-off-by: Jonathon Jongsma <jjongsma@redhat.com>
---
man/virt-install.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/man/virt-install.rst b/man/virt-install.rst
index f75af635..e97a2266 100644
--- a/man/virt-install.rst
+++ b/man/virt-install.rst
@@ -1197,7 +1197,7 @@ Some example suboptions:
``accessmode`` or ``mode``
The access mode for the source directory from the guest OS. Only used with
- QEMU and type=mount. Valid modes are 'passthrough' (the default), 'mapped',
+ QEMU and type=mount. Valid modes are 'mapped' (the default), 'passthrough',
or 'squash'. See libvirt domain XML documentation for more info.
``source``
--
2.34.1

View File

@ -8,7 +8,7 @@
Name: virt-manager
Version: 3.2.0
Release: 13%{?dist}%{?extra_release}
Release: 14%{?dist}%{?extra_release}
%global verrel %{version}-%{release}
Summary: Desktop tool for managing virtual machines via libvirt
@ -34,6 +34,7 @@ Patch13: virt-manager-Handle-new-nodedev-name-for-mediated-devices.patch
Patch14: virt-manager-cli-add-ioapic.driver-to-features.patch
Patch15: virt-manager-cli-filesystem-add-binary.sandbox.mode-and-source.socket.patch
Patch16: virt-manager-nodedev-Improve-error-with-unknown-address-strings.patch
Patch17: virt-manager-man-fix-default-value-for-filesystem-accessmode-option.patch
Requires: virt-manager-common = %{verrel}
@ -191,6 +192,9 @@ done
%changelog
* Wed Feb 9 2022 Jonathon Jongsma <jjongsma@redhat.com> - 3.2.0-14
- man: fix default value for filesystem accessmode option (rhbz#2045932)
* Mon Feb 7 2022 Jonathon Jongsma <jjongsma@redhat.com> - 3.2.0-13
- cli: --filesystem: add binary.sandbox.mode and source.socket (rhbz#2045932)
- nodedev: Improve error with unknown address strings (rhbz#2017840)