From b2feccc7d4784c241fb652f308e251cde6a5e6ba Mon Sep 17 00:00:00 2001 From: "daniele.corsini@corsinvest.it" Date: Thu, 2 May 2024 12:25:39 +0200 Subject: [PATCH] Improve doc parameter --- README.md | 7 ------- src/Corsinvest.ProxmoxVE.Pepper/Program.cs | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/README.md b/README.md index b0ec715..cf41822 100644 --- a/README.md +++ b/README.md @@ -25,17 +25,10 @@ Options: --validate-certificate Validate SSL Certificate Proxmox VE node. --host (REQUIRED) The host name host[:port],host1[:port],host2[:port] --vmid The id or name VM/CT -<<<<<<< HEAD - --proxy SPICE proxy server. This can be used by the client to specify the proxy server. All nodes in a cluster runs 'spiceproxy', so it is up to - the client to choose one. By default, we return the node to connect. If specify http(s)://[host]:[port] then replace proxy option in file - .vv. E.g. for reverse proxy. - --viewer (REQUIRED) Executable SPICE client remote viewer. -======= --proxy SPICE proxy server. This can be used by the client to specify the proxy server. All nodes in a cluster runs 'spiceproxy', so it is up to the client to choose one. By default, we return the node to connect. If specify http(s)://[host]:[port] then replace proxy option in file .vv. E.g. for reverse proxy. --viewer (REQUIRED) Executable SPICE client remote viewer (remote-viewer executable) ->>>>>>> a95eafc5623471c7e5825e184b29d43e6ad0fcf5 --viewer-options Send options directly SPICE Viewer (quote value). --start-or-resume Run stopped or paused VM --wait-for-startup Wait sec. for startup VM [default: 5] diff --git a/src/Corsinvest.ProxmoxVE.Pepper/Program.cs b/src/Corsinvest.ProxmoxVE.Pepper/Program.cs index a10af4d..0a7e2f8 100644 --- a/src/Corsinvest.ProxmoxVE.Pepper/Program.cs +++ b/src/Corsinvest.ProxmoxVE.Pepper/Program.cs @@ -26,7 +26,7 @@ var optProxy = app.AddOption("--proxy", " By default, we return the node to connect." + " If specify http(s)://[host]:[port] then replace proxy option in file .vv. E.g. for reverse proxy."); -var optRemoteViewer = app.AddOption("--viewer", "Executable SPICE client remote viewer.") +var optRemoteViewer = app.AddOption("--viewer", "Executable SPICE client remote viewer (remote-viewer executable)") .AddValidatorExistFile(); optRemoteViewer.IsRequired = true;