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 c8cee419bca5126323ab7d8a86f22254a7564c8b Author: Mike DePaulo <mikedep333@gmail.com> Date: Fri May 29 08:16:58 2015 -0400 TRINITY: Add support for Q4OS --- debian/changelog | 1 + x2goserver/bin/x2goruncommand | 8 +++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 71be34f..1876b9f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ x2goserver (4.0.1.20-0x2go1) UNRELEASED; urgency=low * New upstream version (4.0.1.20): - TERMINAL Session: Add support for qterminal (Lightweight terminal emulator written in Qt) + - TRINITY: Add support for Q4OS [ Mihai Moldovan ] * New upstream version (4.0.1.20): diff --git a/x2goserver/bin/x2goruncommand b/x2goserver/bin/x2goruncommand index ac7ff7f..fa62f71 100755 --- a/x2goserver/bin/x2goruncommand +++ b/x2goserver/bin/x2goruncommand @@ -195,7 +195,13 @@ elif [ "$cmd" == "XFCE4" ] || [ "$cmd" == "XFCE" ]; then elif [ "$cmd" == "LXDE" ]; then cmd="/usr/bin/startlxde" elif [ "$cmd" == "TRINITY" ]; then - cmd="/usr/bin/starttrinity" + # If we are on Q4OS, which needs to set env and run some tasks before + # launching trinity. + if [ -e /usr/bin/start-q4os-x2go ]; then + cmd="/usr/bin/start-q4os-x2go" + else + cmd="/usr/bin/starttrinity" + fi elif [ "$cmd" == "OPENBOX" ]; then cmd="/usr/bin/openbox-session" elif [ "$cmd" == "ICEWM" ]; then -- Alioth's /srv/git/code.x2go.org/x2goserver.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goserver.git