[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 08/10] docs: update to show preferred boolean syntax for -vnc
From: |
Daniel P . Berrangé |
Subject: |
[PATCH 08/10] docs: update to show preferred boolean syntax for -vnc |
Date: |
Tue, 16 Feb 2021 19:10:25 +0000 |
The preferred syntax is to use "foo=on|off", rather than a bare
"foo" or "nofoo".
The on|off syntax has been supported since -vnc switched to use
QemuOpts in commit 4db14629c38611061fc19ec6927405923de84f08
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
docs/system/vnc-security.rst | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/docs/system/vnc-security.rst b/docs/system/vnc-security.rst
index ebca656d87..830f6acc73 100644
--- a/docs/system/vnc-security.rst
+++ b/docs/system/vnc-security.rst
@@ -44,7 +44,7 @@ the password all clients will be rejected.
.. parsed-literal::
- |qemu_system| [...OPTIONS...] -vnc :1,password -monitor stdio
+ |qemu_system| [...OPTIONS...] -vnc :1,password=on -monitor stdio
(qemu) change vnc password
Password: ********
(qemu)
@@ -104,7 +104,7 @@ authentication to provide two layers of authentication for
clients.
|qemu_system| [...OPTIONS...] \
-object
tls-creds-x509,id=tls0,dir=/etc/pki/qemu,endpoint=server,verify-peer=on \
- -vnc :1,tls-creds=tls0,password -monitor stdio
+ -vnc :1,tls-creds=tls0,password=on -monitor stdio
(qemu) change vnc password
Password: ********
(qemu)
@@ -128,7 +128,7 @@ can be launched with:
.. parsed-literal::
- |qemu_system| [...OPTIONS...] -vnc :1,sasl -monitor stdio
+ |qemu_system| [...OPTIONS...] -vnc :1,sasl=on -monitor stdio
.. _vnc_005fsec_005fcertificate_005fsasl:
@@ -146,7 +146,7 @@ x509 options:
|qemu_system| [...OPTIONS...] \
-object
tls-creds-x509,id=tls0,dir=/etc/pki/qemu,endpoint=server,verify-peer=on \
- -vnc :1,tls-creds=tls0,sasl -monitor stdio
+ -vnc :1,tls-creds=tls0,sasl=on -monitor stdio
.. _vnc_005fsetup_005fsasl:
--
2.29.2
- [PATCH 00/10] qemu-options: always use key=on|off syntax for bool option docs, Daniel P . Berrangé, 2021/02/16
- [PATCH 01/10] gdbstub: use preferred boolean option syntax, Daniel P . Berrangé, 2021/02/16
- [PATCH 02/10] qemu-options: update to show preferred boolean syntax for -chardev, Daniel P . Berrangé, 2021/02/16
- [PATCH 03/10] qemu-options: update to show preferred boolean syntax for -spice, Daniel P . Berrangé, 2021/02/16
- [PATCH 05/10] qemu-options: update to show preferred boolean syntax for -incoming, Daniel P . Berrangé, 2021/02/16
- [PATCH 04/10] qemu-options: update to show preferred boolean syntax for -netdev, Daniel P . Berrangé, 2021/02/16
- [PATCH 08/10] docs: update to show preferred boolean syntax for -vnc,
Daniel P . Berrangé <=
- [PATCH 06/10] qemu-options: update to show preferred boolean syntax for -vnc, Daniel P . Berrangé, 2021/02/16
- [PATCH 07/10] docs: update to show preferred boolean syntax for -chardev, Daniel P . Berrangé, 2021/02/16
- [PATCH 09/10] docs: update to show preferred boolean syntax for -cpu, Daniel P . Berrangé, 2021/02/16
- [PATCH 10/10] target/i386: update to show preferred boolean syntax for -cpu, Daniel P . Berrangé, 2021/02/16