[pve-devel] [PATCH] Add DNS challenge schema for knot.

2021-11-17 Thread Jens Meißner
Signed-off-by: Jens Meißner --- src/dns-challenge-schema.json | 19 ++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/dns-challenge-schema.json b/src/dns-challenge-schema.json index a3a3ebc..d194701 100644 --- a/src/dns-challenge-schema.json +++ b/src/dns-chall

[pve-devel] [PATCH widget-toolkit] improve error handling when adding webauthn entries

2021-11-17 Thread Wolfgang Bumiller
There are cases where we directly throw a string error (particularly, when navigator.credentials.create() fails, for example when trying to register the same WA device to the same user twice), which would end up with the WA window simply not closing before. Signed-off-by: Wolfgang Bumiller --- s

[pve-devel] [PATCH qemu] fix #3728: handle machine without type

2021-11-17 Thread Fabian Grünbichler
libguestfs starts their helper VMs with `-machine accel=..` without a machine type, and our pve version suffix handling would segfault in that case. there might be other scripted use cases that are affected as well. this regression was introduced with the rebase of our patch set on top of 6.1.0 F

Re: [pve-devel] [PATCH qemu] fix #3728: handle machine without type

2021-11-17 Thread Dominik Csapak
was about to send basically the same patch, so ack'd by me ;) ___ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] Proxmox VE 7.1 released!

2021-11-17 Thread Martin Maurer
Hi all, we're excited to announce the release of Proxmox Virtual Environment 7.1. It's based on Debian 11.1 "Bullseye" but using a newer Linux kernel 5.13, QEMU 6.1, LXC 4.0, Ceph 16.2.6, and OpenZFS 2.1. and countless enhancements and bugfixes. Proxmox Virtual Environment brings several new

[pve-devel] [PATCH dart_api_client] add win11 ostype

2021-11-17 Thread Dominik Csapak
or else the deserialization will fail for vms with that ostype set Signed-off-by: Dominik Csapak --- lib/src/models/pve_nodes_qemu_config_model.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/src/models/pve_nodes_qemu_config_model.dart b/lib/src/models/pve_nodes_qemu_config_model

[pve-devel] applied: [PATCH dart_api_client] add win11 ostype

2021-11-17 Thread Thomas Lamprecht
On 17.11.21 12:45, Dominik Csapak wrote: > or else the deserialization will fail for vms with that ostype set > > Signed-off-by: Dominik Csapak > --- > lib/src/models/pve_nodes_qemu_config_model.dart | 2 ++ > 1 file changed, 2 insertions(+) > > applied, thanks! _

[pve-devel] [PATCH manager] fix use statement

2021-11-17 Thread Fabian Grünbichler
else this happens: "Use of inherited AUTOLOAD for non-method PVE::API2::Backup::uuid() is no longer allowed at /usr/share/perl5/PVE/API2/Backup.pm line 198. (500)" Signed-off-by: Fabian Grünbichler --- https://forum.proxmox.com/threads/different-backup-retentions.99869/#post-430885 PVE/API2/Ba

[pve-devel] [PATCH docs 1/2] VM live migration: mention that CPU vendor should be the same

2021-11-17 Thread Fabian Ebner
Signed-off-by: Fabian Ebner --- pvecm.adoc | 3 +++ qm.adoc| 2 ++ 2 files changed, 5 insertions(+) diff --git a/pvecm.adoc b/pvecm.adoc index 0b1857e..26b52cf 100644 --- a/pvecm.adoc +++ b/pvecm.adoc @@ -74,6 +74,9 @@ Requirements * The root password of a cluster node is required for add

[pve-devel] [PATCH docs 2/2] cluster: migration: use back-ticked insecure when referring to the setting

2021-11-17 Thread Fabian Ebner
Signed-off-by: Fabian Ebner --- pvecm.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pvecm.adoc b/pvecm.adoc index 26b52cf..48c3927 100644 --- a/pvecm.adoc +++ b/pvecm.adoc @@ -1273,7 +1273,7 @@ Migration Type The migration type defines if the migration data shoul

[pve-devel] [PATCH manager] api: backup: correclty use uuid package

2021-11-17 Thread Dominik Csapak
Signed-off-by: Dominik Csapak --- PVE/API2/Backup.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/API2/Backup.pm b/PVE/API2/Backup.pm index 428f4cb3..9bddb4d1 100644 --- a/PVE/API2/Backup.pm +++ b/PVE/API2/Backup.pm @@ -195,7 +195,7 @@ __PACKAGE__->register_method({

[pve-devel] applied: [PATCH manager] fix use statement

2021-11-17 Thread Thomas Lamprecht
On 17.11.21 13:52, Fabian Grünbichler wrote: > else this happens: > > "Use of inherited AUTOLOAD for non-method PVE::API2::Backup::uuid() is > no longer allowed at /usr/share/perl5/PVE/API2/Backup.pm line 198. > (500)" > > Signed-off-by: Fabian Grünbichler > --- > https://forum.proxmox.com/threa

[pve-devel] applied: [PATCH manager] api: backup: correclty use uuid package

2021-11-17 Thread Thomas Lamprecht
On 17.11.21 14:52, Dominik Csapak wrote: > Signed-off-by: Dominik Csapak > --- > PVE/API2/Backup.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > applied, thanks! ___ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.pro

[pve-devel] [PATCH manager] api: backup: normalize 'dow' format when converting

2021-11-17 Thread Dominik Csapak
the old web ui sends the days as seperate parameters, which will be concatenated by a null-byte in the api, causing it to land it this way in the jobs.cfg to fix this, split+join the list to get a well-formed dow list Signed-off-by: Dominik Csapak --- PVE/API2/Backup.pm | 1 + 1 file changed, 1

[pve-devel] applied-series: [PATCH docs 1/2] VM live migration: mention that CPU vendor should be the same

2021-11-17 Thread Thomas Lamprecht
On 17.11.21 14:05, Fabian Ebner wrote: > Signed-off-by: Fabian Ebner > --- > pvecm.adoc | 3 +++ > qm.adoc| 2 ++ > 2 files changed, 5 insertions(+) > > applied both patches, thanks! ___ pve-devel mailing list pve-devel@lists.proxmox.com https:/

[pve-devel] applied: [PATCH docs] backup: add section for protection

2021-11-17 Thread Thomas Lamprecht
On 16.11.21 15:44, Fabian Ebner wrote: > Signed-off-by: Fabian Ebner > --- > vzdump.adoc | 13 + > 1 file changed, 13 insertions(+) > > applied, thanks! ___ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi

[pve-devel] applied: [PATCH qemu] fix #3728: handle machine without type

2021-11-17 Thread Thomas Lamprecht
On 17.11.21 10:41, Fabian Grünbichler wrote: > libguestfs starts their helper VMs with `-machine accel=..` without a > machine type, and our pve version suffix handling would segfault in that > case. there might be other scripted use cases that are affected as well. > > this regression was introdu

Re: [pve-devel] [PATCH] Add DNS challenge schema for knot.

2021-11-17 Thread Thomas Lamprecht
looks OK in general, one question inline... On 17.11.21 09:03, Jens Meißner wrote: > Signed-off-by: Jens Meißner > --- > src/dns-challenge-schema.json | 19 ++- > 1 file changed, 18 insertions(+), 1 deletion(-) > > diff --git a/src/dns-challenge-schema.json b/src/dns-challenge-s

[pve-devel] [PATCH qemu] fix dependencies on headers for 'vma' and 'pbs_restore'

2021-11-17 Thread Dominik Csapak
both of them depend on generated header files, so we have to specify them as sources. Otherwise, it happens (at least on some machines) that they will be compiled before the headers are generated, aborting the build. Signed-off-by: Dominik Csapak --- thanks @wolfgang for helping me understand mes

[pve-devel] applied: [PATCH qemu] fix dependencies on headers for 'vma' and 'pbs_restore'

2021-11-17 Thread Thomas Lamprecht
On 18.11.21 08:05, Dominik Csapak wrote: > both of them depend on generated header files, so we have to specify > them as sources. Otherwise, it happens (at least on some machines) that > they will be compiled before the headers are generated, aborting the > build. > > Signed-off-by: Dominik Csapa

Re: [pve-devel] [PATCH widget-toolkit] improve error handling when adding webauthn entries

2021-11-17 Thread Thomas Lamprecht
On 17.11.21 09:35, Wolfgang Bumiller wrote: > There are cases where we directly throw a string error > (particularly, when navigator.credentials.create() fails, > for example when trying to register the same WA device to > the same user twice), which would end up with the WA window > simply not clo