Re: [pve-devel] Kernel 4.2.8-1 problems

2016-03-15 Thread Paul Penev
It seems a bad idea. Mounting nfs inside a CT is disabled for a reason. I need to add unconfined profile to the CT defeating the purpose of having a CT (unless I oversee something). I have this issue only on one server, while another server has never had this (different cpu/motherboard). I moved

Re: [pve-devel] [PATCH RFC storage] Use is_worker to decide default timeout for ZFS

2016-03-15 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Re: [pve-devel] [PATCH RFC access-control] Add is_worker to RPCEnvironment

2016-03-15 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Re: [pve-devel] [PATCH v3 cluster] Add warning for pvecm commands if not part of cluster

2016-03-15 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Re: [pve-devel] last fixes for LXC

2016-03-15 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Re: [pve-devel] [PATCH manager] formatting and trailing whitespaces fix

2016-03-15 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Re: [pve-devel] [RFC manager] ext6migrate: change VM selector in pool to grid

2016-03-15 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] [PATCH pve-manager 3/5] use proper xtype name

2016-03-15 Thread Emmanuel Kasper
--- www/manager6/lxc/CreateWizard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/manager6/lxc/CreateWizard.js b/www/manager6/lxc/CreateWizard.js index fee77d8..a1a7b57 100644 --- a/www/manager6/lxc/CreateWizard.js +++ b/www/manager6/lxc/CreateWizard.js @@ -58,7 +58,7 @@

[pve-devel] [PATCH pve-manager 2/5] fix delayed store loading

2016-03-15 Thread Emmanuel Kasper
Because the store loading delay, it can be that reload() fails on trying to load an undefined store, if the user switched tabs in the meantime --- www/manager6/grid/BackupView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/manager6/grid/BackupView.js b/www/manager6/grid

[pve-devel] last fixes for LXC

2016-03-15 Thread Emmanuel Kasper
this patch series completes the adaptation of lxc components to ExtJS all components should be now working in LXC except boot ordering settings which requires a class from the qemu folder ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.

[pve-devel] [PATCH pve-manager 4/5] use Ext.apply() instead of Ext.applyIf() to properly load child items

2016-03-15 Thread Emmanuel Kasper
--- www/manager6/window/Wizard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/manager6/window/Wizard.js b/www/manager6/window/Wizard.js index 0e6b02d..cc7f3fb 100644 --- a/www/manager6/window/Wizard.js +++ b/www/manager6/window/Wizard.js @@ -171,7 +171,7 @@ Ext.define('

[pve-devel] [PATCH pve-manager 5/5] Enlarge Wizard window vertically to accomodate all our LXC settings

2016-03-15 Thread Emmanuel Kasper
Without this, the summary grid in the end of the LXC creation wizard needs to be scrolled to see some settings. Note that we still want to use a fixed height, so that all wizard panels have the same height and next/previous buttons are always displayed at the same place. --- www/manager6/window/W

[pve-devel] [PATCH pve-manager 1/5] use 'refresh' event to redisplay the grid after loading the store

2016-03-15 Thread Emmanuel Kasper
'datachanged' event is not actualizing the component with ExtJS6, but 'refresh' does. --- www/manager6/lxc/Snapshot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/manager6/lxc/Snapshot.js b/www/manager6/lxc/Snapshot.js index 7b2e33a..bded7cd 100644 --- a/www/manager6/lx

[pve-devel] [PATCH RFC storage] Use is_worker to decide default timeout for ZFS

2016-03-15 Thread Fabian Grünbichler
Bump timeout to 1 hour if running in a worker and no timeout specified. --- Note: requires "is_worker" patch to pve-access-control PVE/Storage/ZFSPlugin.pm | 5 - PVE/Storage/ZFSPoolPlugin.pm | 5 +++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/PVE/Storage/ZFSPlugin.p

[pve-devel] [PATCH RFC access-control] Add is_worker to RPCEnvironment

2016-03-15 Thread Fabian Grünbichler
after forking the actual worker process, the child/worker sets a flag that can be checked later on by methods called in the worker. used in the ZFS storage plugins in pve-storage to decide on a short or long default timeout for ZFS operations. --- PVE/RPCEnvironment.pm | 6 ++ 1 file changed,

[pve-devel] [RFC manager] ext6migrate: change VM selector in pool to grid

2016-03-15 Thread Dominik Csapak
this changes the vm add window in a pool from a VMIDSelector (a numberfield) to a grid of vms which are currently in no pool where you can select more than one Signed-off-by: Dominik Csapak --- www/manager6/grid/PoolMembers.js | 88 ++-- 1 file changed, 75 ins

[pve-devel] [PATCH manager] formatting and trailing whitespaces fix

2016-03-15 Thread Dominik Csapak
fix format of commit 0a58709503d3dd2e444d00f9d205a231545302f1 (space before 'load') also fix trailing whitespaces in those files Signed-off-by: Dominik Csapak --- www/manager6/dc/Summary.js | 4 ++-- www/manager6/form/ComboGrid.js | 4 ++-- www/manager6/lxc/Config.js |

Re: [pve-devel] Kernel 4.2.8-1 problems

2016-03-15 Thread Alexandre DERUMIER
maybe apparmor related. do you try to mount nfs inside the CT ? - Mail original - De: "Paul Penev" À: "pve-devel" Envoyé: Mardi 15 Mars 2016 10:17:28 Objet: [pve-devel] Kernel 4.2.8-1 problems Hello, I'm not sure if this bug report belongs here, perhaps you can tell. I upgraded a f

Re: [pve-devel] [PATCH ha-manager] status: show added but not yet active services

2016-03-15 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Re: [pve-devel] [PATCH manager 6 0/2] add syslog date picker to manager 6

2016-03-15 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] [PATCH ha-manager] status: show added but not yet active services

2016-03-15 Thread Thomas Lamprecht
If the CRM is dead or not active yet and we add a new service, we do not see it in the HA status. This can be confusing for the user as it is queued for adding but does not shows up, so lets show those services also. Signed-off-by: Thomas Lamprecht --- changes since v2: * do not delete elements

Re: [pve-devel] [PATCH ha-manager] use split_args and shellquote instead of strange regex

2016-03-15 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Re: [pve-devel] [RFC ha-manager v2 2/2] status: show added but not yet active services

2016-03-15 Thread Dietmar Maurer
comments inline > If the CRM is dead or not active yet and we add a new service, we do > not see it in the HA status. This can be confusing for the user as > it is queued for adding but does not shows up, so lets show those > services also. > > Signed-off-by: Thomas Lamprecht > --- > src/PVE/AP

Re: [pve-devel] [PATCH ha-manager v2 1/2] status: mark CRM as idle if no service is configured

2016-03-15 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] [PATCH ha-manager] use split_args and shellquote instead of strange regex

2016-03-15 Thread Thomas Lamprecht
Signed-off-by: Thomas Lamprecht --- src/PVE/HA/FenceConfig.pm | 15 --- src/test/fence_cfgs/complex-params-1.cfg.expect | 4 ++-- src/test/fence_cfgs/simple-1.cfg.expect | 6 +++--- src/test/fence_cfgs/simple-2.cfg.expect | 18 +-

[pve-devel] [PATCH lxcfs] Update upstream post clone/fork fix

2016-03-15 Thread Fabian Grünbichler
--- This should hopefully fix the problems in https://forum.proxmox.com/threads/pve-suddunly-stopped-working-all-cts-unrecheable.26458/ Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index bf2edfa..9b524a3 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,7 @@ d

[pve-devel] [PATCH manager 6 2/2] ext6: datepicker workaround

2016-03-15 Thread Thomas Lamprecht
Witouth this we can get into issues where only the picker is visible and the rest of the GUI is completely grey when selecting a date with the date picker, generally this happens when a scroll field is involved (e.g., syslog). Signed-off-by: Thomas Lamprecht --- www/manager6/Toolkit.js | 7 +

[pve-devel] [PATCH manager 6 1/2] manager6: web-syslog: add date span selection

2016-03-15 Thread Thomas Lamprecht
This is the ExtJS 6 version from commit db2dd0e4390005aa551239d0a6516539b5fa200a Same code as there. A issue with the date picker which can be triggered by scrolling up and then selecting a date will be fixed in ExtJS 6.0.2 (not yet released), a workaround is in the next patch. Signed-off-by: Tho

[pve-devel] [PATCH manager 6 0/2] add syslog date picker to manager 6

2016-03-15 Thread Thomas Lamprecht
As I heard no complaints about the syslog changes yet, or no better implementation idea, here is the manager 6 version of the restrict syslog span patch which is needed to avoid timeouts as journalctl reads _everything_ by default (can be a lot when persistent logging is on). First patch is the sa

Re: [pve-devel] [PATCH pve-manager 1/3] css improvements for crisp theme

2016-03-15 Thread Dietmar Maurer
applied, thanks. ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] Kernel 4.2.8-1 problems

2016-03-15 Thread Paul Penev
Hello, I'm not sure if this bug report belongs here, perhaps you can tell. I upgraded a few nodes from 3.4 to 4.1 and I started getting kernel errors like the below one I'm running LXC containers with bind mounts. The mounts are exported from a nfs server and mounted in the host. Then they're bi

Re: [pve-devel] [PATCH ha-manager] add FenceConfig class for external fencing devices

2016-03-15 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] [PATCH container] require -experimental for pct clone and template

2016-03-15 Thread Fabian Grünbichler
--- Note: this should be removed again when template/clone is stable for LXC src/PVE/API2/LXC.pm | 12 1 file changed, 12 insertions(+) diff --git a/src/PVE/API2/LXC.pm b/src/PVE/API2/LXC.pm index 12e97f4..2f1011a 100644 --- a/src/PVE/API2/LXC.pm +++ b/src/PVE/API2/LXC.pm @@ -906,6

[pve-devel] [PATCH manager] deactivate (currently) not working lxc templates

2016-03-15 Thread Dominik Csapak
this deactivates template creating for lxc in the gui, since this does currently not work reliably Signed-off-by: Dominik Csapak --- i just commented it out, so that when we reenable it, we have to just uncomment it www/manager/lxc/CmdMenu.js | 40 www/

[pve-devel] [PATCH ha-manager] add FenceConfig class for external fencing devices

2016-03-15 Thread Thomas Lamprecht
Add a FenceConfig class which includes methods to parse a config file for fence devices in the format specified by dlm.conf, see the Fencing section in the dlm.conf manpage for more details regarding this format. With this we can generate commands for fencing a node from the parsed config file. W