This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pyhoca-cli. from 7928f2e pyhoca-cli: Follow-up fix for --dpi switch. Fix input value verification. Only demand an integer, if args.dpi is set to something else than None. new 0cc6456 pyhoca-cli: Add --kdrive option. new 714f18c man/man1/pyhoca-cli.1: Fix docs for --quiet option. 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: man/man1/pyhoca-cli.1 | 5 ++++- pyhoca-cli | 1 + pyhoca/cli/frontend.py | 1 + 3 files changed, 6 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 0cc6456c7054bdcc9be56d3eb4814bbb61e90221 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Aug 27 23:44:24 2021 +0200 pyhoca-cli: Add --kdrive option. --- man/man1/pyhoca-cli.1 | 3 +++ pyhoca-cli | 1 + pyhoca/cli/frontend.py | 1 + 3 files changed, 5 insertions(+) diff --git a/man/man1/pyhoca-cli.1 b/man/man1/pyhoca-cli.1 index aeba44c..d315ad5 100644 --- a/man/man1/pyhoca-cli.1 +++ b/man/man1/pyhoca-cli.1 @@ -153,6 +153,9 @@ Use X2Go printing (default: disabled). \*(T<\fB\-\-share-mode\fR \fI{0|1}\fR\*(T> Share mode for X2Go desktop sharing (0: view-only, 1: full access). .TP +\*(T<\fB\-\-kdrive\fR\*(T> +As graphical backend use the X2Go Kdrive Xserver instead of the default NXv3 Xserver. +.TP \*(T<\fB\-\-auth-attempts\fR \fI{0,1,2,3,...}\fR\*(T> Number of interactive authentication attempts in case authentication with the server fails (wrong password?). A value that equals 0 disables interactive authentication completely and requires that a private SSH key has been given on the command line or in the diff --git a/pyhoca-cli b/pyhoca-cli index 18bbf36..4ecdf68 100755 --- a/pyhoca-cli +++ b/pyhoca-cli @@ -170,6 +170,7 @@ x2go_options = [ {'args':['--clean-sessions'], 'default': False, 'action': 'store_true', 'help': 'clean all suspended sessions before starting a new one', }, {'args':['--terminate-on-ctrl-c'], 'default': False, 'action': 'store_true', 'help': 'terminate the connected session when pressing CTRL+C (instead of suspending the session)', }, {'args':['--auth-attempts'], 'default': 3, 'help': 'number of authentication attempts before authentication fails (default: 3)', }, + {'args':['--kdrive'], 'default': False, 'action': 'store_true', 'help': 'as graphical backend use the X2Go Kdrive Xserver instead of the default NXv3 Xserver', }, ] ssh_options = [ {'args':['-A', '--forward-sshagent'], 'default': False, 'action': 'store_true', 'help': 'forward SSH agent authentication socket', }, diff --git a/pyhoca/cli/frontend.py b/pyhoca/cli/frontend.py index 4cb5962..c24d064 100644 --- a/pyhoca/cli/frontend.py +++ b/pyhoca/cli/frontend.py @@ -457,6 +457,7 @@ class PyHocaCLI(x2go.X2GoClient): add_to_known_hosts=self.args.add_to_known_hosts, profile_name = 'Pyhoca-Client_Session', session_type=self.args.session_type, + kdrive=self.args.kdrive, link=self.args.link, dpi=self.args.dpi, xinerama=self.args.xinerama, -- 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 714f18c08aa5a9c5098b8cfbf5083640579a1e83 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Aug 27 23:44:57 2021 +0200 man/man1/pyhoca-cli.1: Fix docs for --quiet option. --- man/man1/pyhoca-cli.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/man1/pyhoca-cli.1 b/man/man1/pyhoca-cli.1 index d315ad5..3edc016 100644 --- a/man/man1/pyhoca-cli.1 +++ b/man/man1/pyhoca-cli.1 @@ -44,7 +44,7 @@ Display a help with all available command line options and exit. \*(T<\fB\-V, \-\-version\fR\*(T> Output version information and exit. .TP -\*(T<\fB\-d, \-\-quiet\fR\*(T> +\*(T<\fB\-\-quiet\fR\*(T> No output to stdout at all! .TP \*(T<\fB\-d, \-\-debug\fR\*(T> -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pyhoca-cli.git