Update database backup script to connect to fritz
[clinton/scripts.git] / hcoop-git-maint
... / ...
CommitLineData
1#!/bin/bash
2#
3# Git maintenance script, run by cron.
4
5# Update symlinks to user git repo locations.
6find /afs/hcoop.net/user -mindepth 3 -maxdepth 3 -noleaf -exec \
7 sh -c "test -e {}/.hcoop-git && { \
8 rm -f /var/cache/git/\$(basename {}); \
9 ln -sf {}/.hcoop-git /var/cache/git/\$(basename {}); }" \; \
10 > /dev/null 2>&1
11
12# Remove symlinks for users that have wrong permissions
13IFS=$'\n'
14for user in $(ls -1 /var/cache/git); do
15 if ! test -e $(readlink /var/cache/git/$user); then
16 rm -f /var/cache/git/$user
17 continue
18 fi
19 gitpath=$(readlink /var/cache/git/$user)
20 find -L $gitpath -noleaf -type d \
21 ! -regex '.*/\(refs\|objects\)\(/.*\|$\)' -exec \
22 sh -c "! { fs la {} | \
23 egrep '^ +system:anyuser .*r' > /dev/null; } && \
24 rm -f /var/cache/git/$user 2>/dev/null" \; \
25 > /dev/null 2>&1
26done
27
28# Update cache of front page.
29cache=/var/local/lib/gitweb/indexcache.html
30wget -q -O $cache.tmp 'http://git.hcoop.net/?nocache=y'
31if test -s $cache.tmp; then
32 chmod a+r $cache.tmp
33 mv $cache.tmp $cache
34else
35 rm -f $cache.tmp
36fi