From 5d7961aad58872767189f42bc45984fb962d3116 Mon Sep 17 00:00:00 2001 From: Tonton Jo <60965766+Tontonjo@users.noreply.github.com> Date: Sun, 28 Jan 2024 14:15:59 +0100 Subject: [PATCH 1/2] some clarifying in usage --- README.md | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 287c86e..6aeb349 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,19 @@ Contributions are welcome especially Usage ===== +A typical command would look like: +```ssh +proxmoxbackupgo.exe -baseurl "https://yourpbshost:8007" -certfingerprint pbsfingerprint -authid "user@realm!apiid" -secret "apisecret" -backupdir "C:\path\to\backup" -datastore "datastorename" + +``` + + ``` -proxmoxbackupgo.exe -authid string +proxmoxbackupgo.exe + -authid string Authentication ID (PBS Api token) + -secret string + Secret for authentication -backupdir string Backup source directory, must not be symlink -baseurl string @@ -27,10 +37,8 @@ proxmoxbackupgo.exe -authid string Certificate fingerprint for SSL connection, example: ea:7d:06:f9... -datastore string Datastore name - -pxarout string - Output PXAR archive for debug purposes (optional) - -secret string - Secret for authentication + -pxarout string (optional) + Output PXAR archive for debug purposes ``` Known Issues From 3a17d516dccde3367c310beefb842da621f0eedd Mon Sep 17 00:00:00 2001 From: Tonton Jo <60965766+Tontonjo@users.noreply.github.com> Date: Sun, 28 Jan 2024 17:38:51 +0100 Subject: [PATCH 2/2] md synthax correction --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6aeb349..7afad3d 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Usage ===== A typical command would look like: -```ssh +```shell proxmoxbackupgo.exe -baseurl "https://yourpbshost:8007" -certfingerprint pbsfingerprint -authid "user@realm!apiid" -secret "apisecret" -backupdir "C:\path\to\backup" -datastore "datastorename" ```