aboutsummaryrefslogtreecommitdiffstats
path: root/modules/subversion/templates/restricted_to_user
blob: 98297627943578f3a30385a0c6e32da9c3c3225a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

REP="$1"
TXN="$2"

author=$(svnlook author -t "$TXN" "$REP")

if [ "$author" != '<%= restricted_to_user %>' ]; then
    echo "this repository is restricted to user <%= restricted_to_user %>" >&2
    exit 1
fi