This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch feature/openbox in repository live-build-x2go. commit f041405448a8323961a73fa38a3fe76dfc392dbd Author: Stefan Baur (BAUR-ITCS) <kontakt@baur-itcs.de> Date: Sat Jan 19 02:49:34 2019 +0000 check if /etc/x2go/x2gothinclient_sessions exists, move to /etc/x2go/x2gothinclient_sessions_old if yes, touch /etc/x2go/x2gothinclient_sessions_old if no --- config/includes.chroot/etc/network/if-up.d/0400-getsessions | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config/includes.chroot/etc/network/if-up.d/0400-getsessions b/config/includes.chroot/etc/network/if-up.d/0400-getsessions index d28face..66133ca 100755 --- a/config/includes.chroot/etc/network/if-up.d/0400-getsessions +++ b/config/includes.chroot/etc/network/if-up.d/0400-getsessions @@ -7,7 +7,11 @@ SESSIONSURL=$(sed -e 's/ \([^ ]*\)=/\n\1=/g' -e 's/\([^=]["'"'"']\) /\1\n/g' -e if [ -n "$SESSIONSURL" ] && [ -d /etc/x2go ] ; then # only mv this file if SESSIONSURL was set. If not, leave it in place - as # it might have been customized at image creation time - mv /etc/x2go/x2gothinclient_sessions /etc/x2go/x2gothinclient_sessions_old + if [ -e /etc/x2go/x2gothinclient_sessions ]; then + mv /etc/x2go/x2gothinclient_sessions /etc/x2go/x2gothinclient_sessions_old + else + touch /etc/x2go/x2gothinclient_sessions_old + fi SESSIONSDESTINATION=/etc/x2go/x2gothinclient_sessions_new if [ "$METHOD" = "loopback" ] || [ "$METHOD" = "none" ]; then -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/live-build-x2go.git