From: thib Date: Wed, 7 Nov 2007 09:26:01 +0000 (+0000) Subject: fixed bug: was importing 'functions' from /etc/rc.d/init.d instead of /etc/init.d... X-Git-Tag: ver3_0_4~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=35e80685142223929774ba6a96c40d2a9debf984;p=fcron fixed bug: was importing 'functions' from /etc/rc.d/init.d instead of /etc/init.d (or trying to !!) --- diff --git a/script/sysVinit-launcher b/script/sysVinit-launcher index d637828..c8cbda3 100755 --- a/script/sysVinit-launcher +++ b/script/sysVinit-launcher @@ -6,7 +6,7 @@ # processname: fcron # pidfile: /var/run/fcron.pid # config: /var/spool/fcron/* -# $Id: sysVinit-launcher,v 1.11 2007-04-14 17:45:59 thib Exp $ +# $Id: sysVinit-launcher,v 1.12 2007-11-07 09:26:01 thib Exp $ export PATH="/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin" @@ -15,7 +15,7 @@ SBIN=@@DESTSBIN@ # Source function library. if test -f /etc/init.d/functions; then - . /etc/rc.d/init.d/functions + . /etc/init.d/functions FUNCTION=1 STARTCMD="daemon $SBIN/fcron -b" STOPCMD="killproc fcron"