This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2goserver. from df812af grammar fix new bf1f20b fix pam_namespace.so support in X2Go::Server::Agent::NX new e9aecce typo fix The 2 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: X2Go/Server/Agent/NX.pm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) -- 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 master in repository x2goserver. commit bf1f20b70e37d1f71f94c5b7bea0d94b8d5651f1 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Jun 27 22:38:43 2014 +0200 fix pam_namespace.so support in X2Go::Server::Agent::NX --- X2Go/Server/Agent/NX.pm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/X2Go/Server/Agent/NX.pm b/X2Go/Server/Agent/NX.pm index 6fd0ac0..9cce1d3 100644 --- a/X2Go/Server/Agent/NX.pm +++ b/X2Go/Server/Agent/NX.pm @@ -76,7 +76,12 @@ sub get_agent_state my $sess=@_[1]; my $user=@_[2]; my $state; - my $stateFile = "/tmp/.x2go-".$user."/C-".$sess."/state"; + my $stateFile; + if ( -d "/tmp-inst/${user}/.x2go-${user}" ) { + $stateFile="/tmp-inst/${user}/.x2go-".$user."/C-".$sess."/state"; + } else { + $stateFile = "/tmp/.x2go-".$user."/C-".$sess."/state";+ + } if (! -e $stateFile ) { print { \*STDERR } "WARNING: state file for session $sess does not exists: $stateFile\n"; -- 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 master in repository x2goserver. commit e9aecce42ac9dbabebf15808276d1883c0ad1988 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Jun 27 23:25:13 2014 +0200 typo fix --- X2Go/Server/Agent/NX.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/X2Go/Server/Agent/NX.pm b/X2Go/Server/Agent/NX.pm index 9cce1d3..187b25e 100644 --- a/X2Go/Server/Agent/NX.pm +++ b/X2Go/Server/Agent/NX.pm @@ -80,7 +80,7 @@ sub get_agent_state if ( -d "/tmp-inst/${user}/.x2go-${user}" ) { $stateFile="/tmp-inst/${user}/.x2go-".$user."/C-".$sess."/state"; } else { - $stateFile = "/tmp/.x2go-".$user."/C-".$sess."/state";+ + $stateFile = "/tmp/.x2go-".$user."/C-".$sess."/state"; } if (! -e $stateFile ) { -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goserver.git