I'm trying to copy a used repository by using svnsync (I'm doing it this way in order to ensure optimal usage of my repository as long as its machine is working) but it does not seems to work.
I have two machines (I've changed the names, but not the other infos)
SOURCE/hooks
, only one executable file exists : pre-revprops-change
.svn16/hooks
, executable files are pre-revprop-change
and start-commit
. On this machine, dav_svn.conf
contains directive SVNParentPath /var/svn
, making all repositories accessible under http://FINAL/svnI've ensured URLs and login/pwd are correct by opening each repository URL in my browser and issuing authentication dialogs, which always seemed to work.
I'm trying to execute the following command
svnsync initialize http://FINAL/svn/svn16 http://INITIAL/SOURCE
But it always end up showing
Authentication realm: <http://FINAL:80> All Subversion Repositories hosted on FINAL
Password for 'ubunut-user':
Authentication realm: <http://FINAL.fr:80> All Subversion Repositories hosted on FINAL
Username: svnsync
Password for 'svnsync':
svnsync: DAV request failed; it's possible that the repository's pre-revprop-change hook either failed or is non-existent
svnsync: At least one property change failed; repository is unchanged
svnsync: Error setting property 'sync-lock':
Revprop change blocked by pre-revprop-change hook (exit code 255) with no output.
I guess there is some kind of configuration issue somewhere§. But what ? And where ? I've reached my limits, and the web seems of no help here, as the various docs I've seen suggest making hooks executable by the whole universe is an efficient solution (what it's not in my case).
Turns out I was dumber than dumb.
In such an error case, the easiest way to ensure all is working correctly is invoking various hooks by hand.
It revealed my pre-revprop-change
hook was incorrectly written with
"#!/bin/sh"
exit 0
Obviously, removing the "
solved the issue.