summaryrefslogtreecommitdiff
path: root/support/rewrite-hooks.sh
blob: b8fd36b9a1e5e61ebc0b4620d33235cbbe27548f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash

src="/home/git/repositories"

for dir in `ls "$src/"`
do
  if [ -d "$src/$dir" ]; then

    if [ "$dir" = "gitolite-admin.git" ]
    then
      continue 
    fi

    if [[ "$dir" =~ ^.*.git$ ]]
    then
      project_hook="$src/$dir/hooks/post-receive"
      gitolite_hook="/home/git/.gitolite/hooks/common/post-receive"

      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/.gitolite/hooks/common/post-receive"

          ln -s -f $gitolite_hook $project_hook
        fi
      done
    fi
  fi
done