diff options
author | Charlie <root@dev.ws.local> | 2009-10-28 12:38:08 -0600 |
---|---|---|
committer | Charlie <root@dev.ws.local> | 2009-10-28 12:38:08 -0600 |
commit | 4a46bf92e6306458ed0cfc375c71618c648ac85a (patch) | |
tree | ddc1ea744dc63eb1139c919dbf10010d7ac7d62b /install-repos |
Initial commit
Diffstat (limited to 'install-repos')
-rwxr-xr-x | install-repos | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/install-repos b/install-repos new file mode 100755 index 0000000..ae10f44 --- /dev/null +++ b/install-repos @@ -0,0 +1,23 @@ +#!/bin/sh -eu +set -eu + +REPOS="/data/git/*.git" +HOOKS="pre-receive" +dir=`dirname $0` +BASE=`realpath $dir` + +for hook in $HOOKS; do + for git in $REPOS; do + if [ -d "$git" ]; then + cd $git + echo `basename $git` + chown -R www:www . + find . -type f -print0 | xargs -0 chmod 660 + find . -type d -print0 | xargs -0 chmod 770 + ln -sf $BASE/$hook hooks/$hook + git config core.sharedRepository=0660 || true + touch git-daemon-export-ok + fi + done +done + |