Re: [X2Go-Dev] Bug#1470: x2goserver: Broken x2goversion results in failed connection

2020-05-19 Thread Randy Goldenberg
The bug I reported is in the version of x2goserver that people will receive for Ubuntu 16.04 using the "stable" release from the official PPA. I will keep in mind that a patched version has been available in a different repo for quite some time. On Tuesday May 19, 2020, Ulrich Sibiller

Re: [X2Go-Dev] Bug#1470: x2goserver: Broken x2goversion results in failed connection

2020-05-19 Thread Ulrich Sibiller
Right, as I wrote the required patch came in 2 days after 4.1.0.3... Here's the nightly ("heuler") repo that contains unrealead 4.1.04: https://launchpad.net/~x2go/+archive/ubuntu/ppa

Re: [X2Go-Dev] Bug#1470: x2goserver: Broken x2goversion results in failed connection

2020-05-19 Thread Randy Goldenberg
On Tuesday May 19, 2020, Ulrich Sibiller wrote: Hmm, in my version on debian (4.1.0.3-4) this is already fixed. The fixing commit is quite old, but was added two days after the version you (or Ubuntu) have...: Ubuntu does not include x2goserver in 16.04 LTS. Software was obtained from

Re: [X2Go-Dev] Bug#1470: x2goserver: Broken x2goversion results in failed connection

2020-05-19 Thread Ulrich Sibiller
Hmm, in my version on debian (4.1.0.3-4) this is already fixed. The fixing commit is quite old, but was added two days after the version you (or Ubuntu) have...: commit c80103788eebe0445efc2cefb56b074231b76f39 Author: Mike Gabriel Date: Sat Dec 1 11:42:40 2018 +0100 x2goversion: Fix

Re: [X2Go-Dev] Bug#1470: x2goserver: Broken x2goversion results in failed connection

2020-05-19 Thread Randy Goldenberg
On Tuesday May 19, 2020, Edgar Fuß wrote: - X2GO_COMPONENT="$(echo "${compfile}" | cut -d '.' -f '2')" + X2GO_COMPONENT="$(echo "$(basename ${compfile})" | cut -d '.' -f '2')" The echo $(...) is redundant, i.e., you want X2GO_COMPONENT="$(basename

Re: [X2Go-Dev] Bug#1470: x2goserver: Broken x2goversion results in failed connection

2020-05-19 Thread Edgar Fuß
> - X2GO_COMPONENT="$(echo "${compfile}" | cut -d '.' -f '2')" > + X2GO_COMPONENT="$(echo "$(basename ${compfile})" | cut -d '.' > -f '2')" The echo $(...) is redundant, i.e., you want X2GO_COMPONENT="$(basename "${compfile}" | cut -d '.' -f '2')"