#!/bin/sh USER="$2" if [ "$USER" = "svnsync" ]; then exit 0; fi echo "Only the svnsync user may commit new revisions" >&2 exit 1