[pve-devel] applied: [PATCH widget-toolkit] fix autoscrolling on browser zoom

2020-09-30 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Re: [pve-devel] corosync bug: cluster break after 1 node clean shutdown

2020-09-30 Thread Thomas Lamprecht
Hi, FYI: pve-cluster 6.2-1 is now available on pvetest, it includes the slightly modified patch from Fabian. cheers, Thomas ___ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Re: [pve-devel] Qm move_disk bug (?)

2020-09-30 Thread Gilberto Nunes
Ok! Just to be sure, I did it again... In the LVM-Thin I have an 100.00g vm disk. Note that only about 6% are filled up. lvs LVVG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert data pve twi-aotz-- 18.87g 31.33 1.86 root p

[pve-devel] [PATCH proxmox-acme 1/1] Close the acme standalone connection after sending a response

2020-09-30 Thread Daniel Berteaud
Without this, the first req get a response, but not the next ones as the listeners stays busy Fixes #3048 Signed-off-by: Daniel Berteaud --- src/PVE/ACME/StandAlone.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/ACME/StandAlone.pm b/src/PVE/ACME/StandAlone.pm ind

[pve-devel] [PATCH proxmox-acme 0/1] Close the acme standalone connection after sending a response

2020-09-30 Thread Daniel Berteaud
Close connection of the standalone ACME listener after sending a response so next requests can be handled Fixes #3048 Daniel Berteaud (1): Close the acme standalone connection after sending a response src/PVE/ACME/StandAlone.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.26.2

Re: [pve-devel] Qm move_disk bug (?)

2020-09-30 Thread Gilberto Nunes
UPDATE From CLI I have used qm move_disk 100 scsi0 VMS --format qcow2 --- Gilberto Nunes Ferreira (47) 3025-5907 (47) 99676-7530 - Whatsapp / Telegram Skype: gilberto.nunes36 Em qua., 30 de set. de 2020 às 10:26, Gilberto Nunes < gilberto.nune...@gmail.com> escreveu: > >> How did you move

Re: [pve-devel] Qm move_disk bug (?)

2020-09-30 Thread Gilberto Nunes
>> How did you move the disk? GUI or CLI? Both. From CLI qm move_disk 100 scsi0 VMS (VMS is the Directory Storage) Proxmox all up to date... pveversion -v proxmox-ve: 6.2-2 (running kernel: 5.4.65-1-pve) pve-manager: 6.2-12 (running version: 6.2-12/b287dd27) pve-kernel-5.4: 6.2-7 pve-kernel-help

Re: [pve-devel] Qm move_disk bug (?)

2020-09-30 Thread Aaron Lauterer
Hey, How did you move the disk? GUI or CLI? If via CLI, could you post the command? Additionally, which versions are installed? (pveversion -v) One more question inline. On 9/30/20 3:16 PM, Gilberto Nunes wrote: Hi all I tried to move a vm disk from LVM-thin to a Directory Storage but when

[pve-devel] Qm move_disk bug (?)

2020-09-30 Thread Gilberto Nunes
Hi all I tried to move a vm disk from LVM-thin to a Directory Storage but when I did this, the qm move_disk just filled up the entire disk. The disk inside LVM-thin has 100G in size but only about 5G is occupied by the OS. I have used the qcow2 format. However, if I do it from CLI with the command

Re: [pve-devel] Flutter-app: Fingerprinting

2020-09-30 Thread Aaron Lauterer
Hey! On 9/30/20 1:33 PM, René Jochum wrote: Does a no response mean - no interest? Definitely not. Thanks for poking again. If you have some code samples flying around we are happy to take a look at it. No promises though if and when we will implement that. All the best, Aaron Kind rega

[pve-devel] [PATCH widget-toolkit] fix autoscrolling on browser zoom

2020-09-30 Thread Dominik Csapak
when browser zoom is activated, our scrollposition can be a little bit off increase the boundary by a few pixels (5px are ~1/3 of a line) so that the auto-scrolling still works Signed-off-by: Dominik Csapak --- src/panel/JournalView.js | 6 +++--- src/panel/LogView.js | 4 ++-- 2 files chang

Re: [pve-devel] [PATCH pve_flutter_frontend 3/3] Add first welcome screen

2020-09-30 Thread Tim Marx
comments inline > Aaron Lauterer hat am 28.09.2020 15:41 geschrieben: > > > Signed-off-by: Aaron Lauterer > --- > Same patch without temp png files. > > Thanks @Dominik for noticing > > .../ssl_validate/login_manager_screen.png | Bin 0 -> 20389 bytes > .../login_manager_screen_settings

[pve-devel] applied: [PATCH cluster] pmxcfs: protect CPG operations with mutex

2020-09-30 Thread Thomas Lamprecht
On 30.09.20 13:21, Fabian Grünbichler wrote: > cpg_mcast_joined (and transitively, cpg_join/leave) are not thread-safe. > pmxcfs triggers such operations via FUSE and CPG dispatch callbacks, > which are running in concurrent threads. > > accordingly, we need to protect these operations with a mute

Re: [pve-devel] Flutter-app: Fingerprinting

2020-09-30 Thread René Jochum
Does a no response mean - no interest? Kind regards, René On 24.09.20 13:16, René Jochum wrote: > Hi, > > I wanted to write my own Flutter based app before you guy's Published > the App, I wanted to call it "superprox", it should run on Desktop with > electron, iOS and Android. > > Because of tha

Re: [pve-devel] [PATCH pve_flutter_frontend 2/3] add Proxmox symbol logo white orange

2020-09-30 Thread Aaron Lauterer
On 9/30/20 1:08 PM, Tim Marx wrote: I think there is something wrong with the resolution here, the x3 seems far bigger and height values are slightly wrong as well. Thanks for noticing. Yep I made that a 4x by accident. Aaron Lauterer hat am 28.09.2020 14:28 geschrieben: Signed-off

[pve-devel] [PATCH cluster] pmxcfs: protect CPG operations with mutex

2020-09-30 Thread Fabian Grünbichler
cpg_mcast_joined (and transitively, cpg_join/leave) are not thread-safe. pmxcfs triggers such operations via FUSE and CPG dispatch callbacks, which are running in concurrent threads. accordingly, we need to protect these operations with a mutex, otherwise they might return CS_OK without actually d

Re: [pve-devel] [PATCH pve_flutter_frontend 1/3] add class for Proxmox corporate identity colors

2020-09-30 Thread Aaron Lauterer
On 9/30/20 12:54 PM, Tim Marx wrote: [...] diff --git a/lib/utils/promox_colors.dart b/lib/utils/promox_colors.dart new file mode 100644 index 000..f45ef3d --- /dev/null +++ b/lib/utils/promox_colors.dart @@ -0,0 +1,10 @@ +import 'package:flutter/material.dart'; + +class ProxmoxColors { +

Re: [pve-devel] [PATCH pve_flutter_frontend 2/3] add Proxmox symbol logo white orange

2020-09-30 Thread Tim Marx
I think there is something wrong with the resolution here, the x3 seems far bigger and height values are slightly wrong as well. > Aaron Lauterer hat am 28.09.2020 14:28 geschrieben: > > > Signed-off-by: Aaron Lauterer > --- > .../2.0x/Proxmox-logo-symbol-white-orange.png | Bin 0 -> 18270

Re: [pve-devel] [PATCH pve_flutter_frontend 1/3] add class for Proxmox corporate identity colors

2020-09-30 Thread Tim Marx
> Aaron Lauterer hat am 28.09.2020 14:28 geschrieben: > > > Signed-off-by: Aaron Lauterer > --- > lib/main.dart | 3 ++- > lib/utils/promox_colors.dart | 10 ++ > lib/widgets/pve_guest_overview_header.dart | 3 ++- > lib/widgets/pve_node_

[pve-devel] [PATCH pve_flutter_frontend] add changes to support local biometric authentication

2020-09-30 Thread Tim Marx
Signed-off-by: Tim Marx --- android/app/src/debug/AndroidManifest.xml | 2 + android/app/src/main/AndroidManifest.xml | 1 + .../app/pve_flutter_frontend/MainActivity.kt | 4 +- pubspec.lock | 52 --- 4 files changed, 38 insertions(+),

[pve-devel] [PATCH proxmox_login_manager] add option for local biometric authentication

2020-09-30 Thread Tim Marx
Signed-off-by: Tim Marx --- lib/proxmox_general_settings_form.dart | 39 +++- lib/proxmox_general_settings_model.dart | 12 +- lib/proxmox_login_form.dart | 9 +- lib/proxmox_login_model.dart| 4 +- lib/proxmox_login_selector.dart | 234 +++--

[pve-devel] applied: [pbs-devel] [RFC proxmox-backup 1/1] api2/node/disks/zfs: instantiate import service

2020-09-30 Thread Thomas Lamprecht
On 16.09.20 14:14, Stoiko Ivanov wrote: > When creating a new zpool for a datastore, also instantiate an > import-unit for it. This helps in cases where '/etc/zfs/zool.cache' > get corrupted and thus the pool is not imported upon boot. > > This patch needs the corresponding addition of 'zfs-import