Re: [pve-devel] Qemu nic link status

2014-12-10 Thread Alexandre DERUMIER
I want to make a new feature where you can control the nic link. for the gui we need to show the status. I think, as workaround, we can simply write the state to the config file net0: ,linkstate=on|off and use set_link to enable|disable it, and update the config. at vm start, we can

Re: [pve-devel] [PATCH] Add qga freeze in vzdump in snapshot mode

2014-12-10 Thread Lindsay Mathieson
On Wed, 10 Dec 2014 07:57:30 AM Dietmar Maurer wrote: This will invoke vss on Windows clients? yes. Awesome, great news -- Lindsay signature.asc Description: This is a digitally signed message part. ___ pve-devel mailing list

[pve-devel] pve-common : pve-bridge : create_firewall_bridge_ovs : activate ovsint interface

2014-12-10 Thread Alexandre Derumier
Not sure it's a regression in openvswitch 2.3, but ovs internal port which link fwbr to ovs bridge is not activated when created. We need to activate it, or traffic can't go out of the fwbr bridge when firewall is enabled Bug reported here:

[pve-devel] [PATCH] create_firewall_bridge_ovs : activate ovsint interface

2014-12-10 Thread Alexandre Derumier
Signed-off-by: Alexandre Derumier aderum...@odiso.com --- data/PVE/Network.pm |1 + 1 file changed, 1 insertion(+) diff --git a/data/PVE/Network.pm b/data/PVE/Network.pm index b141d09..00639f6 100644 --- a/data/PVE/Network.pm +++ b/data/PVE/Network.pm @@ -184,6 +184,7 @@ my

[pve-devel] BIG PROBLEM - Possible Bug - Log-Rotation

2014-12-10 Thread Detlef Bracker
Dear, I have the same problem on 2 diferent hosts! The logrotate is not working correct and the logs are not going in the log-files normal, they go in the log-file with the number .1 !!! Expample not logged in auth - but logged in auth.1 or not logged in syslog - but logged in syslog.1 *This is

Re: [pve-devel] BIG PROBLEM - Possible Bug - Log-Rotation

2014-12-10 Thread Daniel Hunsaker
Send a SIGHUP to syslogd. That should fix the rotation. The issue is that the syslogd is writing to an inode, not a filename (it still has the handle open when logrotate renames the file, so it keeps writing to it until told not to via SIGHUP. killall -HUP syslogd Best guess is the SIGHUP was

Re: [pve-devel] BIG PROBLEM - Possible Bug - Log-Rotation

2014-12-10 Thread Detlef Bracker
Dear, more information with logrotate debug. But how new log entries logs in the log.1 - logs? .. empty log files are not rotated, old logs are removed considering log /var/log/mail.info log does not need rotating considering log /var/log/mail.warn log does not need rotating considering

Re: [pve-devel] BIG PROBLEM - Possible Bug - Log-Rotation

2014-12-10 Thread Daniel Hunsaker
See the copytruncate option in the logrotate man page: http://linux.die.net/man/8/logrotate On Wed Dec 10 2014 at 6:25:50 PM Detlef Bracker brac...@1awww.com wrote: Dear, more information with logrotate debug. But how new log entries logs in the log.1 - logs? .. empty log files are

Re: [pve-devel] BIG PROBLEM - Possible Bug - Log-Rotation

2014-12-10 Thread Detlef Bracker
Dear, ok, thats help now to resolve the problem: service rsyslogd stop kill `cat /run/rsyslogd.pid` // check that in /run no a rsyslogd.pid exists now! service rsyslogd start Regards Detlef Am 11.12.2014 02:05, schrieb Detlef Bracker: Dear, I have the same problem on 2 diferent hosts! The