[pve-devel] [PATCH manager] gui: ceph pools: fix pool % used display

2019-07-02 Thread Dominik Csapak
nautilus uses values from 0 to 1 instead of 0 to 100 Signed-off-by: Dominik Csapak --- www/manager6/ceph/Pool.js | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/www/manager6/ceph/Pool.js b/www/manager6/ceph/Pool.js index 522445f8..f0569425 100644 --- a/www/manager6/ce

[pve-devel] applied: [PATCH manager] gui: ceph pools: fix pool % used display

2019-07-02 Thread Thomas Lamprecht
On 7/2/19 9:44 AM, Dominik Csapak wrote: > nautilus uses values from 0 to 1 instead of 0 to 100 > > Signed-off-by: Dominik Csapak > --- > www/manager6/ceph/Pool.js | 8 ++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > > diff --git a/www/manager6/ceph/Pool.js b/www/manager6/ceph/Pool

[pve-devel] applied: [PATCH v4 cluster] add qdevice status api call

2019-07-02 Thread Thomas Lamprecht
On 7/1/19 6:31 PM, Oguz Bektas wrote: > Signed-off-by: Oguz Bektas > --- > > v3 -> v4: > > * fix description > * create a hash directly instead of mapping keys to it > * style fix in socket variable > * don't use 'unless' > applied, thanks! ___ pve-

Re: [pve-devel] [PATCH v2 0/4] Read corosync.conf for firewall rules

2019-07-02 Thread Fabian Grünbichler
applied series with follow-ups, thanks! besides some stylistic things I fixed the multicast detection to actually only trigger when transport is 'udp', and added an early return before getaddrinfo in case the hostname is already an IP address. another potentially nice follow-up would be to includ

[pve-devel] applied: [PATCH ceph v2 2/2] add patch to remove init.d ceph script

2019-07-02 Thread Thomas Lamprecht
On 7/1/19 4:43 PM, Dominik Csapak wrote: > Signed-off-by: Dominik Csapak > --- > new in v2 > ...010-remove-legacy-init.d-ceph-script.patch | 28 +++ > patches/series| 1 + > 2 files changed, 29 insertions(+) > create mode 100644 patches/0010-remov

[pve-devel] applied: [PATCH ceph v2 1/2] add postinst code to remove old ceph osd activation script

2019-07-02 Thread Thomas Lamprecht
On 7/1/19 4:43 PM, Dominik Csapak wrote: > Signed-off-by: Dominik Csapak > --- > changes from v1: > * use the checksum of the service file to be sure that it is our > service we are disabling/deleting > ...e-ceph-osd-activation-script-in-post.patch | 41 +++ > patches/series

[pve-devel] [PATCH firewall] add missing build-depends on libpve-access-control

2019-07-02 Thread Fabian Grünbichler
needed for building the doc files / pve-firewall synopsis Signed-off-by: Fabian Grünbichler --- debian/control | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/control b/debian/control index b1066b5..b119159 100644 --- a/debian/control +++ b/debian/control @@ -7,6 +7,7 @@ Build-Depends

[pve-devel] [PATCH installer] align lines in summary screen

2019-07-02 Thread Oguz Bektas
Signed-off-by: Oguz Bektas --- html-common/ack_template.htm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/html-common/ack_template.htm b/html-common/ack_template.htm index 2f7cf32..aefe855 100644 --- a/html-common/ack_template.htm +++ b/html-common/ack_template.htm @@

[pve-devel] applied: [PATCH manager v2] pve5to6: list vms with active vmx/svm flag

2019-07-02 Thread Thomas Lamprecht
On 7/1/19 4:42 PM, Dominik Csapak wrote: > list all vms with either max/host cputype or vmx/svm explicitely set > (this can only happen in the args) > > give a general message if none is found at the moment (and do not warn) > > Signed-off-by: Dominik Csapak > --- > changes from v1: > * instead

[pve-devel] applied: [PATCH firewall] add missing build-depends on libpve-access-control

2019-07-02 Thread Thomas Lamprecht
On 7/2/19 11:48 AM, Fabian Grünbichler wrote: > needed for building the doc files / pve-firewall synopsis > > Signed-off-by: Fabian Grünbichler > --- > debian/control | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/debian/control b/debian/control > index b1066b5..b119159 100644 > --- a

[pve-devel] [PATCH widget-toolkit] fix syslog resizing

2019-07-02 Thread Dominik Csapak
makes the logview autosize with the window Signed-off-by: Dominik Csapak --- node/ServiceView.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/node/ServiceView.js b/node/ServiceView.js index 75c8325..4b206f0 100644 --- a/node/ServiceView.js +++ b/node/ServiceView.js @@

[pve-devel] [PATCH manager] gui: ceph: fix syslog resize

2019-07-02 Thread Dominik Csapak
makes the logview inside resize with the window Signed-off-by: Dominik Csapak --- www/manager6/ceph/ServiceList.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/www/manager6/ceph/ServiceList.js b/www/manager6/ceph/ServiceList.js index eb679720..0314ab89 100644 --- a/ww

[pve-devel] applied: [PATCH manager] gui: ceph: fix syslog resize

2019-07-02 Thread Thomas Lamprecht
On 7/2/19 1:06 PM, Dominik Csapak wrote: > makes the logview inside resize with the window > > Signed-off-by: Dominik Csapak > --- > www/manager6/ceph/ServiceList.js | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > applied, thanks! ___

[pve-devel] applied: [PATCH widget-toolkit] fix syslog resizing

2019-07-02 Thread Thomas Lamprecht
On 7/2/19 1:05 PM, Dominik Csapak wrote: > makes the logview autosize with the window > > Signed-off-by: Dominik Csapak > --- > node/ServiceView.js | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > applied, thanks! ___ pve-devel mailing

[pve-devel] [PATCH installer] abort installation if memory is less than 1GB

2019-07-02 Thread Oguz Bektas
show a message on screen about memory requirement, then die and abort the installation. Signed-off-by: Oguz Bektas --- proxinstall | 5 + 1 file changed, 5 insertions(+) diff --git a/proxinstall b/proxinstall index e6a29b3..f8dd1d6 100755 --- a/proxinstall +++ b/proxinstall @@ -3234,6 +3234

[pve-devel] [PATCH installer 0/2] small improvements for installs on zfs

2019-07-02 Thread Stoiko Ivanov
while testing the latest changes to the installer a few low-hanging fruit were noticed: * sometimes installations on zfs failed to boot when the disks contained labels from old zpools (e.g. a previous installation with raidZ2 and afterwards a raid0) since the zpool import in initrd saw two poo

[pve-devel] [PATCH installer 2/2] use by-id diskpath for zpool create

2019-07-02 Thread Stoiko Ivanov
With the recent fixes to the installers initial /dev creation, the installer and the kernel should now have the same view on the created devices and links --- proxinstall | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/proxinstall b/proxinstall index 5f4544a..d3b2f7c 100755

[pve-devel] [PATCH installer 1/2] clear zpool labels on selected disks' partitions

2019-07-02 Thread Stoiko Ivanov
along with `pvremove -ff` and writing zeroes to the first 16M of all partitions, which belong to disks selected in the installer run `zpool labelclear`. This prevents a failure to boot after installation, if the disks were previously also used as a zpool called rpool, but in a different configurat

[pve-devel] [PATCH storage] fix missing osd info for osd 0

2019-07-02 Thread Dominik Csapak
0 is falsy, we have to check for definedness also adapt the tests so we test for this Signed-off-by: Dominik Csapak --- PVE/Diskmanage.pm | 2 +- test/disk_tests/usages/disklist_expected.json | 2 +- test/disk_tests/usages/lvs| 2 +- 3 files change