srchub/indefero/scripts/SyncMercurial.sh

16 lines
302 B
Bash
Raw Normal View History

2013-07-25 03:47:45 +00:00
#!/bin/sh
private_notify="/home/mercurial/tmp/notify.tmp"
# Test for debian systems
if [ -e /etc/debian_version ]; then
reload_cmd="sudo /etc/init.d/apache2 reload"
else
reload_cmd="/usr/sbin/apachectl -k graceful"
fi
2013-07-25 03:47:45 +00:00
if [ -e $private_notify ]; then
rm -f $private_notify
$reload_cmd
fi