This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch release/4.0.1.x in repository x2goserver. from fcbd37b x2golistsessions(_root): Only update session state in session DB if x2goagent's state file really exists. This addresses a problem that occurs when x2golistsessions gets called via an x2gobroker-agent. The x2golistsessions script may show session states (--all-servers) of sessions on other servers that have session states files on their remote /tmp dirs. These files are not accessible for that x2golistsessions script and should simply be ignored. new 67f8ec0 fix for last commit The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: x2goserver/bin/x2golistsessions | 2 +- x2goserver/sbin/x2golistsessions_root | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goserver.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch release/4.0.1.x in repository x2goserver. commit 67f8ec08ec82d119b736b56de96c40032a3fa081 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sun Oct 19 00:56:38 2014 +0200 fix for last commit --- x2goserver/bin/x2golistsessions | 2 +- x2goserver/sbin/x2golistsessions_root | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/x2goserver/bin/x2golistsessions b/x2goserver/bin/x2golistsessions index af26e99..718fbaf 100755 --- a/x2goserver/bin/x2golistsessions +++ b/x2goserver/bin/x2golistsessions @@ -124,7 +124,7 @@ for (my $i=0;$i<@outp;$i++) { print "@outp[$i]\n"; } - else if (has_agent_state_file(@sinfo[1], @sinfo[11])) + elsif (has_agent_state_file(@sinfo[1], @sinfo[11])) { if (@sinfo[4]eq 'R') { diff --git a/x2goserver/sbin/x2golistsessions_root b/x2goserver/sbin/x2golistsessions_root index 7e10872..00dbd67 100755 --- a/x2goserver/sbin/x2golistsessions_root +++ b/x2goserver/sbin/x2golistsessions_root @@ -95,7 +95,7 @@ for (my $i=0;$i<@outp;$i++) { print "@outp[$i]\n"; } - else if (has_agent_state_file(@sinfo[1],@sinfo[11])) + elsif (has_agent_state_file(@sinfo[1],@sinfo[11])) { if (@sinfo[4]eq 'R') { -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goserver.git