Re: [pve-devel] VNC Console using our own portal

2023-04-13 Thread Thomas Lamprecht via pve-devel
--- Begin Message --- Hi, Am 13/04/2023 um 15:06 schrieb Mark Schouten: > Not sure if this thread should exist on this list, if not, let me know and > I’ll repost to pve-users. However, I think there are more people here that > know how to achieve what I’m looking for. :) That's fine here too.

Re: [pve-devel] [PATCH v2 widget-toolkit] fix #1454: InfoWidget for Memory

2023-04-13 Thread Stefan Sterz
On 28.03.23 14:49, Matthias Heiserer wrote: > Signed-off-by: Matthias Heiserer > --- > > I'm a bit unsure about the color. If clashes a bit with the red when the > RAM is near full in light mode. Open for better suggestions, but > should work for now. > > changes from v1: > ignore arcsize when

[pve-devel] [PATCH widget-toolkit 3/3] fix #3892: NetworkEdit: add bridge vids field for bridge_vids

2023-04-13 Thread Aaron Lauterer
Signed-off-by: Aaron Lauterer --- src/node/NetworkEdit.js | 16 1 file changed, 16 insertions(+) diff --git a/src/node/NetworkEdit.js b/src/node/NetworkEdit.js index bb9add3..e4ab158 100644 --- a/src/node/NetworkEdit.js +++ b/src/node/NetworkEdit.js @@ -57,11 +57,26 @@

[pve-devel] [PATCH common 1/3] fix #3893: network: make bridge vids configurable

2023-04-13 Thread Aaron Lauterer
For that we need to add a new format option that checks against valid VLAN tags and ranges, for example: 2 4 100-200 The check, if the default value should be used, needs to fail not just when not defined, but also in case it is an empty string. Signed-off-by: Aaron Lauterer --- Notes: I

[pve-devel] [PATCH manager 2/3] fix #3893: api: network: add bridge_vids parameter

2023-04-13 Thread Aaron Lauterer
Signed-off-by: Aaron Lauterer --- PVE/API2/Network.pm | 5 + 1 file changed, 5 insertions(+) diff --git a/PVE/API2/Network.pm b/PVE/API2/Network.pm index a43579fa..0ca892de 100644 --- a/PVE/API2/Network.pm +++ b/PVE/API2/Network.pm @@ -66,6 +66,11 @@ my $confdesc = { type =>

[pve-devel] VNC Console using our own portal

2023-04-13 Thread Mark Schouten via pve-devel
--- Begin Message --- Hi, Not sure if this thread should exist on this list, if not, let me know and I’ll repost to pve-users. However, I think there are more people here that know how to achieve what I’m looking for. :) We’re building a portal for our VPS services and so far we’ve been

[pve-devel] [PATCH frr] fix #4040 : patch : ospf6d: fix infinite loop when adding ASBR route

2023-04-13 Thread Alexandre Derumier
--- .../frr/ospf6d-fix-infinite-loop.patch| 76 +++ debian/patches/series | 1 + 2 files changed, 77 insertions(+) create mode 100644 debian/patches/frr/ospf6d-fix-infinite-loop.patch diff --git a/debian/patches/frr/ospf6d-fix-infinite-loop.patch

[pve-devel] applied: [PATCH http-server] file upload: don't calculate MD5

2023-04-13 Thread Thomas Lamprecht
Am 12/04/2023 um 16:22 schrieb Matthias Heiserer: > Until now, we calculated the MD5 hash of any uploaded file during the upload, > regardless > of whether the user chose to provide a hash sum and algorithm. > The hash was only logged in the syslog. > > As the user can provide a hash algorithm

Re: [pve-devel] [PATCH v2 common 1/1] fix #1454: meminfo: also return arcsize

2023-04-13 Thread Thomas Lamprecht
Am 28/03/2023 um 14:49 schrieb Matthias Heiserer: > Signed-off-by: Matthias Heiserer > --- > Changes from v1: > None > > src/PVE/ProcFSTools.pm | 6 ++ > 1 file changed, 6 insertions(+) > > diff --git a/src/PVE/ProcFSTools.pm b/src/PVE/ProcFSTools.pm > index eb4b0f5..0686c34 100644 > ---