This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gobroker. from d2280f5 x2gobroker/defaults.py: Support offline builds with no DNS or other means of hostname resolution.. new c5d6f84 sbin/x2gobroker-keygen: Fix call to x2gobroker.utils.get_fingerprint_with_colons(). Thanks to Linnea Skgtvedt for spotting and reporting this. The 1 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: sbin/x2gobroker-keygen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gobroker. commit c5d6f8492a31d526fdb5c5a2fecbcfd880841a9c Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Feb 6 19:36:42 2019 +0100 sbin/x2gobroker-keygen: Fix call to x2gobroker.utils.get_fingerprint_with_colons(). Thanks to Linnea Skgtvedt for spotting and reporting this. --- sbin/x2gobroker-keygen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/x2gobroker-keygen b/sbin/x2gobroker-keygen index b259e4c..bbbd78c 100755 --- a/sbin/x2gobroker-keygen +++ b/sbin/x2gobroker-keygen @@ -124,7 +124,7 @@ if __name__ == '__main__': key = paramiko.DSSKey.generate(1024) id_file = 'id_dsa' - logger_broker.info(' The {key_type} key has been generated, fingerprint: {fingerprint}'.format(key_type=cmdline_args.key_type.upper(), fingerprint=x2gobroker.utils.get_fingerprint_with_colons(key))) + logger_broker.info(' The {key_type} key has been generated, fingerprint: {fingerprint}'.format(key_type=cmdline_args.key_type.upper(), fingerprint=x2gobroker.utils.get_key_fingerprint_with_colons(key))) if os.path.exists('{home}/.ssh/{id_file}'.format(home=broker_home, id_file=id_file)) and not cmdline_args.force: logger_broker.error(' Private key {home}/.ssh/{id_file} exists. Use --force to overwrite'.format(home=broker_home, id_file=id_file)) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git