This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gothinclient. from 67ea8a5 management/sbin/x2gothinclient_create: Stop using deprecated --force-yes. new 025f5e5 010_x2gothinclient-fresh-home: Install FreeRDPv2's known_hosts2 file into ~x2gothinclient user's home dir when creating a fresh home. The 1 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: debian/changelog | 2 ++ .../share/etc/x2gothinclient_init.d/010_x2gothinclient-fresh-home | 4 ++++ 2 files changed, 6 insertions(+) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gothinclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gothinclient. commit 025f5e548a6242e20fed9486291af10292400be6 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Nov 23 21:47:12 2018 +0100 010_x2gothinclient-fresh-home: Install FreeRDPv2's known_hosts2 file into ~x2gothinclient user's home dir when creating a fresh home. --- debian/changelog | 2 ++ .../share/etc/x2gothinclient_init.d/010_x2gothinclient-fresh-home | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index 2663f56..9b3fe11 100644 --- a/debian/changelog +++ b/debian/changelog @@ -72,6 +72,8 @@ x2gothinclient (1.5.0.0-0x2go1) UNRELEASED; urgency=low key files, known_hosts was used for FreeRDP v1.x and are in fact deprecated nowadays. - management/sbin/x2gothinclient_create: Stop using deprecated --force-yes. + - 010_x2gothinclient-fresh-home: Install FreeRDPv2's known_hosts2 file into + ~x2gothinclient user's home dir when creating a fresh home. * debian/control: + Rename bin:package: x2gothinclient -> x2gothinclient-daemon. + Make sure x2gothinclient-minidesktop pulls in X11 and X2Go Client. diff --git a/management/share/etc/x2gothinclient_init.d/010_x2gothinclient-fresh-home b/management/share/etc/x2gothinclient_init.d/010_x2gothinclient-fresh-home index b416350..381aaa1 100755 --- a/management/share/etc/x2gothinclient_init.d/010_x2gothinclient-fresh-home +++ b/management/share/etc/x2gothinclient_init.d/010_x2gothinclient-fresh-home @@ -30,6 +30,10 @@ if [ -z "$X2GO_HANDLE_DAEMON" ]; then mkdir -p ~x2gothinclient/.freerdp cp /etc/x2go/freerdp/known_hosts ~x2gothinclient/.freerdp/known_hosts fi + if [ -e /etc/x2go/freerdp/known_hosts2 ]; then + mkdir -p ~x2gothinclient/.config/freerdp + cp /etc/x2go/freerdp/known_hosts2 ~x2gothinclient/.config/freerdp/known_hosts2 + fi if [ -e /etc/xdg/autostart/x2gothinclient-minidesktop.desktop ]; then mkdir -p ~x2gothinclient/Desktop cp /etc/xdg/autostart/x2gothinclient-minidesktop.desktop ~x2gothinclient/Desktop/ -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gothinclient.git