From 95b8297c8584bb441f9cda2bcc24d4866a8121e8 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Thu, 15 Mar 2007 16:00:31 +0000 Subject: [PATCH] Support different directories on different hostys. --- zebra/init-script | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/zebra/init-script b/zebra/init-script index bf29573..36b88f3 100755 --- a/zebra/init-script +++ b/zebra/init-script @@ -1,13 +1,13 @@ #! /bin/sh -# $Id: init-script,v 1.4 2007-02-28 17:50:22 mike Exp $ +# $Id: init-script,v 1.5 2007-03-15 16:00:31 mike Exp $ # # This is a startup/shutdown script for IRSpy's Zebra server, suitable # for use in a SysV-style init directory such as /etc/init.d (on # Debian systems) and /etc/rc.d/init.d (on Red Hat systems), like this: # # cd /etc/init.d -# sudo ln -s /usr/local/src/cvs/irspy/zebra/init-script irspy-zebra +# sudo ln -s .../irspy/zebra/init-script irspy-zebra # sudo /etc/init.d/irspy-zebra start # # You may need to tweak it to suit your system's paths. @@ -18,6 +18,13 @@ PATH=/bin:/usr/bin:/usr/local/bin/ logfile=/var/log/irspy-zebra pidfile=/var/run/irspy-zebra.pid +case "`hostname`" in + xeno|test) IRSPYDIR=/usr/local/src/cvs/irspy/;; + shawarma) IRSPYDIR=/home/mike/cvs/irspy/;; + *) echo "$0: unsupported host `hostname`" >&2 + exit 1;; +esac + case "$1" in start) if [ -f $pidfile ]; then @@ -27,7 +34,7 @@ case "$1" in echo "Starting IRSpy's Zebra" # Let log rotation take care of backups #test -f $logfile && mv -f $logfile $logfile.old - ( cd /usr/local/src/cvs/irspy/zebra + ( cd $IRSPYDIR/zebra zebrasrv-2.0 -f yazserver.xml < /dev/null >> $logfile 2>&1 & echo $! > $pidfile ) -- 1.7.10.4