diff options
Diffstat (limited to 'support/rewrite-hooks.sh')
-rwxr-xr-x | support/rewrite-hooks.sh | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/support/rewrite-hooks.sh b/support/rewrite-hooks.sh index b328f3e..6de4dfc 100755 --- a/support/rewrite-hooks.sh +++ b/support/rewrite-hooks.sh @@ -1,6 +1,7 @@ #!/bin/bash -src="/home/git/repositories" +home_dir="/home/git" +src="$home_dir/repositories" for dir in `ls "$src/"` do @@ -14,22 +15,22 @@ do if [[ "$dir" =~ ^.*\.git$ ]] then project_hook="$src/$dir/hooks/post-receive" - gitolite_hook="/home/git/gitlab-shell/hooks/post-receive" + gitolite_hook="$home_dir/gitlab-shell/hooks/post-receive" ln -s -f $gitolite_hook $project_hook project_hook="$src/$dir/hooks/update" - gitolite_hook="/home/git/gitlab-shell/hooks/update" + gitolite_hook="$home_dir/gitlab-shell/hooks/update" ln -s -f $gitolite_hook $project_hook else for subdir in `ls "$src/$dir/"` do if [ -d "$src/$dir/$subdir" ] && [[ "$subdir" =~ ^.*\.git$ ]]; then project_hook="$src/$dir/$subdir/hooks/post-receive" - gitolite_hook="/home/git/gitlab-shell/hooks/post-receive" + gitolite_hook="$home_dir/gitlab-shell/hooks/post-receive" ln -s -f $gitolite_hook $project_hook project_hook="$src/$dir/$subdir/hooks/update" - gitolite_hook="/home/git/gitlab-shell/hooks/update" + gitolite_hook="$home_dir/gitlab-shell/hooks/update" ln -s -f $gitolite_hook $project_hook fi done |