Re: Subversion Server Packages that are compiled with LDAP support

2012-10-11 Thread Qazwart
What confused me was the lack of mod_ldap.so, etc in the package. I do see it does work though. -- David Weintraub da...@weintraub.name On Oct 11, 2012, at 12:23 PM, Bob Archer wrote: >> We recently downloaded CollabNet's Subversion server package with Apache >> integration. Is LDAP support i

Re: Commit blocked by pre-commit hook (exit code 255) with no output

2012-04-15 Thread Qazwart
On Apr 15, 2012, at 4:54 PM, Armando Perico wrote: > I actually don't have an apache user running, however, when I run it > manually, the script works fine, am I missing anything ? Of course you do! Otherwise, how could a file be "owned" by user "apache"? Check the /etc/passwd file. There's

Re: Commit blocked by pre-commit hook (exit code 255) with no output

2012-04-15 Thread Qazwart
If I understand your pre-commit script, it consists of two lines and can only exit with a status of 0. Exit 255 code usually means that your script couldn't get executed. • You're on Linux or Unix. • Script is in the hooks directory • The whole repository is owned apache:apache. And that's the

Re: Commit blocked by pre-commit hook (exit code 255) with no output

2012-04-15 Thread Qazwart
Remember that the only output is From STDERR and only if your script returns a nonzero exit code. What language in your hook script written in? Do you have the standard pre-commit hook call your pre-commit? What OS are you using? Check to make sure your script is executable and owned by the cor