[pve-devel] [PATCH] fix hotplug ip configuration V3

2015-06-29 Thread Alexandre Derumier
changelog: V2: find lxc pid from /proc/ V3: fix parse_lxc_network (name is mandatory, bridge optionnal) Signed-off-by: Alexandre Derumier aderum...@odiso.com --- src/PVE/LXC.pm | 191 - 1 file changed, 162 insertions(+), 29 deletions(-)

Re: [pve-devel] [PATCH] fix hotplug ip configuration V3

2015-06-29 Thread Dietmar Maurer
I am not sure if that always works. AFAIK the init process can be an arbitrary name, and that is why lxc-info calls a monitor command to get the PID? Also, your code opens/close many files. So I think the original approach calling lxc-info is better for now. And it is more efficient once we have

Re: [pve-devel] [PATCH] fix hotplug ip configuration V3

2015-06-29 Thread Alexandre DERUMIER
Envoyé: Lundi 29 Juin 2015 17:45:53 Objet: Re: [pve-devel] [PATCH] fix hotplug ip configuration V3 I am not sure if that always works. AFAIK the init process can be an arbitrary name, and that is why lxc-info calls a monitor command to get the PID? Also, your code opens/close many files. So I think