Added the Mercurial repository serving synchronization.

This fixes ticket 79.
This commit is contained in:
Benjamin Jorand
2008-12-08 09:56:31 +01:00
committed by Loic d'Anterroches
parent 023cd73ebf
commit 0eeef34908
5 changed files with 304 additions and 2 deletions

10
scripts/SyncMercurial.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
private_notify="/home/indefero/tmp/notify.tmp"
reload_cmd="/usr/sbin/apachectl -k graceful"
if [ -e $private_notify ]; then
$reload_cmd
rm -f $private_notify
fi