This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pyhoca-cli. from 3fbced2 pyhoca-cli.spec: fully own %{python2_sitelib}/pyhoca directory. new 5dcd563 pyhoca/cli/frontend.py: Check directly after authentication, if the remote host has the X2Go Server software installed. new 0adac3b debian/control: Bump versioned D on python3-x2go to (>= 0.6.0.2-0~). 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 | 3 +++ debian/control | 2 +- pyhoca/cli/frontend.py | 3 +++ 3 files changed, 7 insertions(+), 1 deletion(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pyhoca-cli.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pyhoca-cli. commit 5dcd5633dfa55ba9e8ae66a8045f7371108e3864 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sat Nov 10 22:05:17 2018 +0000 pyhoca/cli/frontend.py: Check directly after authentication, if the remote host has the X2Go Server software installed. --- debian/changelog | 2 ++ pyhoca/cli/frontend.py | 3 +++ 2 files changed, 5 insertions(+) diff --git a/debian/changelog b/debian/changelog index 3578f84..58607d2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,8 @@ pyhoca-cli (0.6.0.1-0x2go1) UNRELEASED; urgency=medium [ Mike Gabriel ] * New upstream release (0.6.0.1): - Fix failing password-only authentication. + - pyhoca/cli/frontend.py: Check directly after authentication, if the + remote host has the X2Go Server software installed. * debian/control: + Set Section: from "python" to "x11". More appropriate. diff --git a/pyhoca/cli/frontend.py b/pyhoca/cli/frontend.py index 76ad762..411045a 100644 --- a/pyhoca/cli/frontend.py +++ b/pyhoca/cli/frontend.py @@ -653,6 +653,9 @@ class PyHocaCLI(x2go.X2GoClient): password = None passphrase = None + if not self.is_x2goserver(self.x2go_session_hash): + self._runtime_error('the remote server does not have the X2Go Server software installed', exitcode=1337) + def MainLoop(self): """\ Start the main loop of this application. -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pyhoca-cli.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pyhoca-cli. commit 0adac3b85958b87545a0be70edc45ebafeb2d8e4 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sat Nov 10 22:06:27 2018 +0000 debian/control: Bump versioned D on python3-x2go to (>= 0.6.0.2-0~). --- debian/changelog | 1 + debian/control | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 58607d2..a0e36f3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,7 @@ pyhoca-cli (0.6.0.1-0x2go1) UNRELEASED; urgency=medium remote host has the X2Go Server software installed. * debian/control: + Set Section: from "python" to "x11". More appropriate. + + Bump versioned D on python3-x2go to (0.6.0.2-0~). [ Mihai Moldovan ] * New upstream version (0.6.0.1): diff --git a/debian/control b/debian/control index e78ff0c..ac9c038 100644 --- a/debian/control +++ b/debian/control @@ -23,7 +23,7 @@ Depends: ${misc:Depends}, ${python3:Depends}, python3, - python3-x2go (>=0.6.0.1-0~), + python3-x2go (>=0.6.0.2-0~), python3-setproctitle, Suggests: mteleplayer-clientside, -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pyhoca-cli.git