[pve-devel] applied: [PATCH installer] fix #2313: load country.dat file with utf8 encoding

2019-08-12 Thread Thomas Lamprecht
Am 8/9/19 um 12:47 PM schrieb Dominik Csapak: > this fixes the display and selection problem with countries that > have non-ascii symbols in them, like "Côte d'Ivoire" > > Signed-off-by: Dominik Csapak > --- > proxinstall | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/

Re: [pve-devel] [PATCH qemu-server] Fix #2041, #2272 Add spice enhancements

2019-08-12 Thread Thomas Lamprecht
Am 7/29/19 um 10:59 AM schrieb Aaron Lauterer: > This adds a new config option called `spice_enhancements` and two > settings for it: > > * videostreaming > * foldersharing > > Signed-off-by: Aaron Lauterer > --- > > Feedback is appreciated, especially regarding: > > * naming of the new config

[pve-devel] applied-series: [PATCH zfsonlinux 1/3] cherry-pick parallel mount fix

2019-08-12 Thread Thomas Lamprecht
Am 8/8/19 um 3:12 PM schrieb Fabian Grünbichler: > Signed-off-by: Fabian Grünbichler > --- > > Notes: > possibly a fix for > https://forum.proxmox.com/threads/mount-zfs-when-directory-not-empty.29657 > > ...llel-mount-s-thread-dispatching-algo.patch | 244 ++ > debian/patch

Re: [pve-devel] [PATCH qemu-server 0/1] Allow aes as cpu flag

2019-08-12 Thread Stefan Reiter
We are currently looking at a re-do of CPU models and flags in general, including adding support for custom CPU models [0]. Feature flags like aes would be automatically supported by this (i.e. you could create a custom model derived from kvm64 and add aes to it). Then again, I'm not sure what

Re: [pve-devel] [PATCH qemu] add pve-api-updates trigger

2019-08-12 Thread Dominik Csapak
i just benchmarked a cached stat version vs. not cached code is the following: 8< use strict; use warnings; use utf8; use Benchmark qw(cmpthese); use PVE::Tools qw(run_command); my $kvm_cache; my $kvm_timestamp; sub get_kvm_version { my $kvm_user_version = 'unknown'; my $code

Re: [pve-devel] [PATCH qemu-server 0/1] Allow aes as cpu flag

2019-08-12 Thread Peter Keresztes Schmidt | SOSETH Internal Affairs
Hi, is there anything missing before this and the corresponding pve-manager patch can be reviewed? Regards, Peter ___ pve-devel mailing list pve-devel@pve.proxmox.com https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] [PATCH v3 manager 1/3] fix #1594: add "Run now" button to cluster backup page

2019-08-12 Thread Stefan Reiter
Iterate all (online) nodes client-side and call vzdump with the correct parameters (according to the job selected) for each one. Then, show a progress bar in a non-closeable modal-dialog, to ensure the user stays on the Backup page during the /vzdump API calls. Any errors that occurred will be dis

[pve-devel] [PATCH v3 0/3] fix #1594 and clean up backup

2019-08-12 Thread Stefan Reiter
Thanks again to Fabian and Dominik for reviewing the series. v2 -> v3: * Change UI mask to modal with progress bar * Show error for offline nodes v1 -> v2: * Remove API path, call /vzdump on all nodes from client directly * Remove check for Sys.Modify permission (only regular VZDump backup perms

[pve-devel] [PATCH v3 manager 3/3] Code cleanup in Backup

2019-08-12 Thread Stefan Reiter
Whitespace removal and consolidating VZDump's job id format into a local variable. Signed-off-by: Stefan Reiter --- PVE/API2/Backup.pm| 25 + www/manager6/dc/Backup.js | 10 +- 2 files changed, 14 insertions(+), 21 deletions(-) diff --git a/PVE/API2/Backu

[pve-devel] [PATCH v3 manager 2/3] fix #1594: allow skipping VMIDs on other nodes from API

2019-08-12 Thread Stefan Reiter
This was previously gated to CLI only, but it causes a vzdump job started with the newly introduced "Run Now" button to fail if it includes VMIDs on other nodes. Signed-off-by: Stefan Reiter --- PVE/API2/VZDump.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/API2/VZDum

Re: [pve-devel] [PATCH qemu] add pve-api-updates trigger

2019-08-12 Thread Thomas Lamprecht
Am 8/12/19 um 12:06 PM schrieb Dominik Csapak: > On 8/12/19 11:43 AM, Thomas Lamprecht wrote: >> Am 8/12/19 um 10:37 AM schrieb Dominik Csapak: >>> we want to notify the api that there is a new qemu-binary, since >>> the version will be cached in qemu-server and instead of >>> checking the version

Re: [pve-devel] Install glusterfs-server as default

2019-08-12 Thread Dominic Jäger
On 8/9/19 2:02 PM, Fabian Grünbichler wrote: it might be worth it to attempt to convince upstream to ship the "gluster" binary in its own package or move it to glusterfs-common (since it seems to be a general management CLI akin to Ceph's 'ceph', and not the actual server part). On Fedora, fo

Re: [pve-devel] [PATCH qemu-server] api resume: drop nocheck parameter

2019-08-12 Thread Thomas Lamprecht
Am 8/7/19 um 1:57 PM schrieb Fabian Grünbichler: > On May 25, 2019 5:09 pm, Thomas Lamprecht wrote: >> Once, this was used when transferring the VM state finsihed on a >> migration to another node to resume the VM there again, it was called >> through SSH using the 'qm resume' command, which bases

Re: [pve-devel] [PATCH qemu] add pve-api-updates trigger

2019-08-12 Thread Dominik Csapak
On 8/12/19 11:43 AM, Thomas Lamprecht wrote: Am 8/12/19 um 10:37 AM schrieb Dominik Csapak: we want to notify the api that there is a new qemu-binary, since the version will be cached in qemu-server and instead of checking the version every time, just restart pveproxy/pvedaemon whenever there is

Re: [pve-devel] [PATCH qemu] add pve-api-updates trigger

2019-08-12 Thread Thomas Lamprecht
Am 8/12/19 um 10:37 AM schrieb Dominik Csapak: > we want to notify the api that there is a new qemu-binary, since > the version will be cached in qemu-server and instead of > checking the version every time, just restart pveproxy/pvedaemon > whenever there is a qemu update > > this fixes a rare th

Re: [pve-devel] [PATCH kernel-meta 2/2] Add efiboot refresh hook to update-initramfs

2019-08-12 Thread Thomas Lamprecht
Am 8/1/19 um 1:01 PM schrieb Stefan Reiter: > As explained in [0], we can add a hook script that will be called after > update-initramfs did its job (and thus, a new initrd has been created). > > We can use this to automatically sync the ESPs using 'pve-efiboot-tool > refresh', if update-initramfs

[pve-devel] [PATCH qemu] add pve-api-updates trigger

2019-08-12 Thread Dominik Csapak
we want to notify the api that there is a new qemu-binary, since the version will be cached in qemu-server and instead of checking the version every time, just restart pveproxy/pvedaemon whenever there is a qemu update this fixes a rare theoretical issue when only updating qemu, that the pvedaemon