Thorsten Schöning wrote on Fri, Oct 02, 2015 at 17:01:56 +0200: > What I would need is something polling some repos, like commit > monitors, only server based without GUI and such, and on commits > updates some working copies. Additionally, I need to be able to at > least restart services. I guess this covers around 95% of my use > cases and reads like some flexible commit monitor and a scripting > interface, but I hope that maybe some of this scripting could be > avoided and replaced by really simple configurations. Of course this > would only be useful if such an application doesn't bring it's own web > server, database and Ruby runtime environment...
There's svnpubsub. In a nutshell, svnpubsub sits in the post-commit hook and broadcasts the commit to TCP listeners, and svnwcsub is a listener that runs 'svn update' and also has a post-update hook. @all, do we have a good documentation of what svnpubsub _is_? Neither https://subversion.apache.org/faq#website-auto-update nor https://svn.apache.org/repos/asf/subversion/trunk/tools/server-side/svnpubsub/README.txt actually explain what svnpubsub is. Cheers, Daniel