This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gobroker. from 2ab4eec x2gobroker-pubkeyauthorizer: Handle replacement of SSH pubkeys with wrong/ old SSH options. new 3adebed fix missing newline character on replaced lines new 2b367eb improve log message 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: sbin/x2gobroker-pubkeyauthorizer | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- Alioth's /srv/git/code.x2go.org/x2gobroker.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 3adebed6cad37178d8ecbfe641761b827485948f Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Apr 1 14:45:10 2015 +0200 fix missing newline character on replaced lines --- sbin/x2gobroker-pubkeyauthorizer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/x2gobroker-pubkeyauthorizer b/sbin/x2gobroker-pubkeyauthorizer index 2bf6f8d..ba6d95c 100755 --- a/sbin/x2gobroker-pubkeyauthorizer +++ b/sbin/x2gobroker-pubkeyauthorizer @@ -210,7 +210,7 @@ if __name__ == '__main__': i += 1 line = line.rstrip("\n") if line not in to_be_removed: - cleanup_authorized_keys.write(line) + cleanup_authorized_keys.write(line+"\n") else: logger_broker.info(' Dropping replaced non-option public key (counter={i}) from {authorized_keys}.'.format(i=i, authorized_keys='{home}/.ssh/authorized_keys'.format(home=broker_home))) cleanup_authorized_keys.truncate() -- Alioth's /srv/git/code.x2go.org/x2gobroker.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 2b367eb97835bd63fb950d8a609922ac10cd7819 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Apr 1 14:46:58 2015 +0200 improve log message --- sbin/x2gobroker-pubkeyauthorizer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/x2gobroker-pubkeyauthorizer b/sbin/x2gobroker-pubkeyauthorizer index ba6d95c..d177119 100755 --- a/sbin/x2gobroker-pubkeyauthorizer +++ b/sbin/x2gobroker-pubkeyauthorizer @@ -212,7 +212,7 @@ if __name__ == '__main__': if line not in to_be_removed: cleanup_authorized_keys.write(line+"\n") else: - logger_broker.info(' Dropping replaced non-option public key (counter={i}) from {authorized_keys}.'.format(i=i, authorized_keys='{home}/.ssh/authorized_keys'.format(home=broker_home))) + logger_broker.info(' Dropping public key (counter={i}) with deprecated or no options from {authorized_keys}.'.format(i=i, authorized_keys='{home}/.ssh/authorized_keys'.format(home=broker_home))) cleanup_authorized_keys.truncate() cleanup_authorized_keys.close() -- Alioth's /srv/git/code.x2go.org/x2gobroker.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git