This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch feature/mate-minidesktop in repository live-build-x2go. commit 2f91ffd839414a780c272c026d21653c6ad0dacb Author: Stefan Baur (BAUR-ITCS) <kontakt@baur-itcs.de> Date: Mon Jan 2 10:50:53 2017 +0100 name change --- .../lib/live/config/2410-x2go-getopensshkey | 42 ---------------------- 1 file changed, 42 deletions(-) diff --git a/config/includes.chroot/lib/live/config/2410-x2go-getopensshkey b/config/includes.chroot/lib/live/config/2410-x2go-getopensshkey deleted file mode 100755 index c6b3859..0000000 --- a/config/includes.chroot/lib/live/config/2410-x2go-getopensshkey +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh - - -X2GoGetOpenSSHKey () -{ -# Output startup message -# -echo -n " x2go-getopensshkey" - -# This script is for using the iso-hybrid image along with the "second partition" patch -# it allows you to share ssh secret keys between X2GoClient for Windows in portable -# mode and the X2Go-ThinClientEnvironment on the same USB media using different partitions - -# Homedir des clientseitigen X2Go-ThinClient-Accounts -# -X2GOHOME="/var/lib/x2gothinclient/" - -# Homedir der Portable-App-Installation -# -HOME="/media/PORTABLEAPP/" - -# .ssh-Directory anlegen, das existiert zu diesem Zeitpunkt noch nicht -# -mkdir -p $(readlink -m "$X2GOHOME/.ssh/") - -for KEYFILE in $HOME/ssh/* ; do - [ -s "$KEYFILE" ] || continue - KEYDESTPATH="$X2GOHOME/.ssh/$(basename "$KEYFILE")" - touch "$KEYDESTPATH" - chown x2gothinclient:x2gothinclient \ - $KEYDESTPATH - chmod 600 $KEYDESTPATH - cat $(readlink -m "$KEYFILE")>$KEYDESTPATH - -done - -ln -s $X2GOHOME/.ssh $X2GOHOME/ssh - -} - -X2GoGetOpenSSHKey - -- Alioth's /srv/git/code.x2go.org/live-build-x2go.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/live-build-x2go.git