This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gothinclient. from f09bb93 revert an earlier commit that worked around faulty packages new d05958c typo fix new 2a7d0c4 also use lazy unmounts in x2gothinclient_shell... The 2 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 +- management/sbin/x2gothinclient_create | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) -- Alioth's /srv/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 2a7d0c45490fccc928ff5c8e1b9c94ac7880b1e9 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Aug 29 15:08:06 2014 +0200 also use lazy unmounts in x2gothinclient_shell... --- debian/changelog | 2 +- management/sbin/x2gothinclient_create | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 613a251..d9c736c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -15,7 +15,7 @@ x2gothinclient (1.5.0.0-0x2go1) UNRELEASED; urgency=low the test command. - Init scripts: Provide status option. - Use lazy unmounts for unmounting bind-mounted /proc, /sys, /dev/pts - after exiting the TCE chroot (x2gothinclient_shell, + after exiting the TCE chroot (x2gothinclient_create, x2gothinclient_shell, x2gothinclient_upgrade). - Assure that a tmpfs under <chroot>/root gets mounted and cleanly unmounted (x2gothinclient_shell, x2gothinclient_upgrade). diff --git a/management/sbin/x2gothinclient_create b/management/sbin/x2gothinclient_create index ef9fb7b..09099e4 100755 --- a/management/sbin/x2gothinclient_create +++ b/management/sbin/x2gothinclient_create @@ -263,7 +263,7 @@ chroot $TC_CHROOT /x2go_tce_install.sh for mountpoint in proc dev/pts sys; do while true; do - cat /proc/mounts | grep "$TC_CHROOT/$mountpoint" >/dev/null && umount "$TC_CHROOT/$mountpoint" || break + cat /proc/mounts | grep "$TC_CHROOT/$mountpoint" >/dev/null && umount -l "$TC_CHROOT/$mountpoint" || break done done -- Alioth's /srv/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 d05958cb8c515a0a979278e677fe08cfbc3b9b55 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Aug 29 15:07:09 2014 +0200 typo fix --- management/sbin/x2gothinclient_create | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/management/sbin/x2gothinclient_create b/management/sbin/x2gothinclient_create index 743225f..ef9fb7b 100755 --- a/management/sbin/x2gothinclient_create +++ b/management/sbin/x2gothinclient_create @@ -278,7 +278,7 @@ empty_folder "$TC_CHROOT/var/lib/xkb" empty_folder "$TC_CHROOT/var/lib/dbus" empty_folder "$TC_CHROOT/var/lib/alsa" -x2gothinclient-update +x2gothinclient_update echo "X2Go Thin Client creation has finished successfully." echo -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2gothinclient.git