diff options
author | Olli Hauer <ohauer@FreeBSD.org> | 2016-02-21 13:33:59 +0000 |
---|---|---|
committer | Olli Hauer <ohauer@FreeBSD.org> | 2016-02-21 13:33:59 +0000 |
commit | 20d066eee09e56966303b591925b081736068573 (patch) | |
tree | 649cd88f0a1f114ab692f181c7162dea1bbbf9dd /devel/gitolite/files/patch-src_triggers_post-compile_ssh-authkeys-split | |
parent | - Update to version 3.5.5.2016.02.20 (diff) |
- update to v3.6.5
Changes:
2016-02-20 v3.6.5
- allow creator check to be bypassed during mirroring
- handle new style ssh fingerprinting correctly (thanks to
Robin Johnson)
- allow pre-auto-gc as a repo-specific hook
- optimise mirror pushes for heavily used repos
- create-with-reference trigger: on repo creation, setup
objects/info/alternates for a server side alternate object
store.
- 'mirror status all all' prints a list of repos that have
*some* error, which is arguably more useful for further
action/processing
- allow incrementally adding more repo-specific hooks
Diffstat (limited to 'devel/gitolite/files/patch-src_triggers_post-compile_ssh-authkeys-split')
-rw-r--r-- | devel/gitolite/files/patch-src_triggers_post-compile_ssh-authkeys-split | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/devel/gitolite/files/patch-src_triggers_post-compile_ssh-authkeys-split b/devel/gitolite/files/patch-src_triggers_post-compile_ssh-authkeys-split index 277e8830fe71..6afcda2ac10f 100644 --- a/devel/gitolite/files/patch-src_triggers_post-compile_ssh-authkeys-split +++ b/devel/gitolite/files/patch-src_triggers_post-compile_ssh-authkeys-split @@ -1,4 +1,4 @@ ---- src/triggers/post-compile/ssh-authkeys-split.orig 2015-11-01 12:01:20 UTC +--- src/triggers/post-compile/ssh-authkeys-split.orig 2016-02-20 12:48:57 UTC +++ src/triggers/post-compile/ssh-authkeys-split @@ -1,4 +1,4 @@ -#!/usr/local/bin/bash @@ -6,10 +6,10 @@ # split multi-key files into separate keys like ssh-authkeys likes -@@ -60,7 +60,7 @@ do - while read line - do - echo "$line" > $SKD/$base@$seq.pub +@@ -64,7 +64,7 @@ do + echo 1>&2 "ssh-authkeys-split: bad line $seq in keydir/$k" + rm -f $f + fi - (( seq++ )) + seq=$(( $seq + 1 )) done < $k |