[X2Go-Commits] x2goserver.git - build-baikal (branch) updated: 3.1.0.0-5-gc3a457c

X2Go dev team git-admin at x2go.org
Fri Jan 3 18:04:43 CET 2014


The branch, build-baikal has been updated
       via  c3a457cf4ffe605dc8d200084925ad9fe5812171 (commit)
      from  5cd74c75ba45c8844686e1e8bdca74dee28a6149 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
-----------------------------------------------------------------------

Summary of changes:
 debian/changelog           |    1 +
 x2goserver/etc/x2go_logout |    3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 6b0a3f2..d5664c6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ x2goserver (3.1.0.1-0~x2go1) UNRELEASED; urgency=low
     - Provide infrastructure for on-logout script calls.
     - Do only run session cleanup scripts from within
       x2goruncommand. Dropping them from x2goterminate-session.
+    - Be tolerant against x2go_logout script failures.
 
  -- Mike Gabriel <mike.gabriel at das-netzwerkteam.de>  Wed, 22 Feb 2012 15:10:12 +0100
 
diff --git a/x2goserver/etc/x2go_logout b/x2goserver/etc/x2go_logout
index b32fde1..39296d6 100644
--- a/x2goserver/etc/x2go_logout
+++ b/x2goserver/etc/x2go_logout
@@ -4,7 +4,8 @@
 if [ -d /etc/x2go/x2go_logout.d ]; then
   for subscript in /etc/x2go_logout.d/*; do
     if [ -r $subscript ]; then
-      . $subscript
+      # subscripts may fail, we ignore that here...
+      . $subscript || true
     fi
   done
   unset subscript


hooks/post-receive
-- 
x2goserver.git (X2Go Server)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2goserver.git" (X2Go Server).




More information about the x2go-commits mailing list