This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gothinclient. from 101b772 cdmanager/powerej/eject.cpp: include QStyleFactory. new 034598f management/sbin/x2gothinclient_update: Create $TC_CHROOT/etc/x2go/x2gothinclient_init.d/ before copying files into it. new cd1992b management/sbin/x2gothinclient_update: Consider known_hosts2 FreeRDP host key files, known_hosts was used for FreeRDP v1.x and are in fact deprecated nowadays. new 67ea8a5 management/sbin/x2gothinclient_create: Stop using deprecated --force-yes. The 3 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 | 6 ++++++ management/sbin/x2gothinclient_create | 4 ++-- management/sbin/x2gothinclient_update | 5 +++-- 3 files changed, 11 insertions(+), 4 deletions(-) -- 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 034598fdeafbe365884bae497a084495a010f67d Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Nov 23 21:35:42 2018 +0100 management/sbin/x2gothinclient_update: Create $TC_CHROOT/etc/x2go/x2gothinclient_init.d/ before copying files into it. --- debian/changelog | 2 ++ management/sbin/x2gothinclient_update | 1 + 2 files changed, 3 insertions(+) diff --git a/debian/changelog b/debian/changelog index 9b02295..fd1119d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -66,6 +66,8 @@ x2gothinclient (1.5.0.0-0x2go1) UNRELEASED; urgency=low - TCE in display manager mode: Don't align multiple heads next to one another if a (Wacom) touchscreen is detected in the list of heads. (Fixes: #719). + - management/sbin/x2gothinclient_update: Create + $TC_CHROOT/etc/x2go/x2gothinclient_init.d/ before copying files into it. * debian/control: + Rename bin:package: x2gothinclient -> x2gothinclient-daemon. + Make sure x2gothinclient-minidesktop pulls in X11 and X2Go Client. diff --git a/management/sbin/x2gothinclient_update b/management/sbin/x2gothinclient_update index 751effb..64a1626 100755 --- a/management/sbin/x2gothinclient_update +++ b/management/sbin/x2gothinclient_update @@ -63,6 +63,7 @@ echo "------------------------------------------------------------" mkdir -p "$TC_CHROOT/etc/x2go/" ls "$TC_CONFIG/x2gothinclient_init.d/" | while read init_part; do + mkdir -p "$TC_CHROOT/etc/x2go/x2gothinclient_init.d/" if test -f "$TC_CONFIG/x2gothinclient_init.d/$init_part"; then cp -v "$TC_CONFIG/x2gothinclient_init.d/$init_part" "$TC_CHROOT/etc/x2go/x2gothinclient_init.d/" chmod a+rx "$TC_CHROOT/etc/x2go/x2gothinclient_init.d/$init_part" -- 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 cd1992b6f719dc9c30c9487560592a4cd9cd5396 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Nov 23 21:37:24 2018 +0100 management/sbin/x2gothinclient_update: Consider known_hosts2 FreeRDP host key files, known_hosts was used for FreeRDP v1.x and are in fact deprecated nowadays. --- debian/changelog | 3 +++ management/sbin/x2gothinclient_update | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index fd1119d..32927f4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -68,6 +68,9 @@ x2gothinclient (1.5.0.0-0x2go1) UNRELEASED; urgency=low (Fixes: #719). - management/sbin/x2gothinclient_update: Create $TC_CHROOT/etc/x2go/x2gothinclient_init.d/ before copying files into it. + - management/sbin/x2gothinclient_update: Consider known_hosts2 FreeRDP host + key files, known_hosts was used for FreeRDP v1.x and are in fact + deprecated nowadays. * debian/control: + Rename bin:package: x2gothinclient -> x2gothinclient-daemon. + Make sure x2gothinclient-minidesktop pulls in X11 and X2Go Client. diff --git a/management/sbin/x2gothinclient_update b/management/sbin/x2gothinclient_update index 64a1626..bf2637e 100755 --- a/management/sbin/x2gothinclient_update +++ b/management/sbin/x2gothinclient_update @@ -86,9 +86,9 @@ if test -f "$TC_CONFIG/x2gothinclient-${TC_FLAVOUR}_background.svg"; then ln -sf "/etc/x2go/x2gothinclient-${TC_FLAVOUR}_background.svg" "$TC_CHROOT/etc/x2go/x2gothinclient-background.svg" fi -if test -f "$TC_CONFIG/freerdp/known_hosts"; then +if test -f "$TC_CONFIG/freerdp/known_hosts" || test -f "$TC_CONFIG/freerdp/known_hosts2" ; then mkdir -p "$TC_CHROOT/etc/x2go/freerdp/" - cp -v "$TC_CONFIG/freerdp/known_hosts" "$TC_CHROOT/etc/x2go/freerdp/known_hosts" + cp -v "$TC_CONFIG/freerdp/known_hosts*" "$TC_CHROOT/etc/x2go/freerdp/" fi echo -- 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 67ea8a57a9bf428491af30952d5807b9dd7de54c Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Nov 23 21:41:10 2018 +0100 management/sbin/x2gothinclient_create: Stop using deprecated --force-yes. --- debian/changelog | 1 + management/sbin/x2gothinclient_create | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 32927f4..2663f56 100644 --- a/debian/changelog +++ b/debian/changelog @@ -71,6 +71,7 @@ x2gothinclient (1.5.0.0-0x2go1) UNRELEASED; urgency=low - management/sbin/x2gothinclient_update: Consider known_hosts2 FreeRDP host 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. * debian/control: + Rename bin:package: x2gothinclient -> x2gothinclient-daemon. + Make sure x2gothinclient-minidesktop pulls in X11 and X2Go Client. diff --git a/management/sbin/x2gothinclient_create b/management/sbin/x2gothinclient_create index 4184f23..c044a11 100755 --- a/management/sbin/x2gothinclient_create +++ b/management/sbin/x2gothinclient_create @@ -199,7 +199,7 @@ export X2GO_HANDLE_DAEMONS=false [ \$? -eq 0 ] && test -n "$TC_X2GO_DEBURL" && echo "$TC_X2GO_DEBURL" > /etc/apt/sources.list.d/x2go.list [ \$? -eq 0 ] && test -n "$TC_X2GO_DEBURL" && apt-get update -[ \$? -eq 0 ] && test -n "$TC_X2GO_DEBURL" && apt-get install x2go-keyring -y --force-yes +[ \$? -eq 0 ] && test -n "$TC_X2GO_DEBURL" && apt-get install x2go-keyring -y # tweak mtab diversion [ \$? -eq 0 ] && rm -f /etc/mtab @@ -217,7 +217,7 @@ fi [ \$? -eq 0 ] && test -h /initrd.img && mv /initrd.img /initrd.img.$KERNEL_VERSION.tmp || true [ \$? -eq 0 ] && LINK_TARGET=\$(readlink /initrd.img.$KERNEL_VERSION.tmp | sed 's@/boot@boot@') && ln -sf \$LINK_TARGET /initrd.img.$KERNEL_VERSION && rm -f /initrd.img.$KERNEL_VERSION.tmp -[ \$? -eq 0 ] && apt-get install x2gothinclient-chroot x2gothinclient-${TC_FLAVOUR} -y --force-yes +[ \$? -eq 0 ] && apt-get install x2gothinclient-chroot x2gothinclient-${TC_FLAVOUR} -y # blacklist kernel modules -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gothinclient.git