I'm trying to get a post-commit hook set up that will sync my subversion repository to a mirror. I have largely follow the instructions here Setting Up A Subverion Mirror Repository Using Svnsync, with some minor edits for syntax that has apparently changed since 2006 (based on these tips). I can sync my repositories just fine from the command line, however, for some reason I can't seem to get my post-commit hook to complete the sync.
This is the content of my post-commit file.
#! /bin/sh
sudo -u <mirror-svn-user> /usr/bin/svnsync --non-interactive synchronize svn+ssh://<mirror-repo-url> &
When I execute this with an empty environment it works just fine.
sudo -u root env - <path-to-repo>/hooks/post-commit <path-to-repo> 1234
I can't seem to pinpoint what the issue is with commits. I added some debug statements to print out the arguments passed in from svnserve to a file. That works with commits and indicates that post-commit script is at least executing. I tried logging the output from the sync command, but the statement generates and empty file.
sudo -u <mirror-svn-user> /usr/bin/svnsync --non-interactive synchronize svn+ssh://<mirror-repo-url> &><path-to-repo>/hooks/result
Any ideas what the issue could be or what I might try to debug it?