From: Thibault Godouet Date: Thu, 2 Nov 2000 20:54:01 +0000 (+0000) Subject: bug corrected for Redhats systems (added the -b option) X-Git-Tag: ver2_9_4~519 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b7afccf07687ce5da646b0af52d6932cb61aa7a3;p=thirdparty%2Ffcron.git bug corrected for Redhats systems (added the -b option) --- diff --git a/script/sysVinit-launcher b/script/sysVinit-launcher index b8b4ee1..4d7941b 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.6 2000-11-02 19:10:34 thib Exp $ +# $Id: sysVinit-launcher,v 1.7 2000-11-02 20:54:01 thib Exp $ export PATH="/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin" @@ -16,9 +16,9 @@ SBIN=@@DESTSBIN@ # Source function library. if test -f /etc/rc.d/init.d/functions; then . /etc/rc.d/init.d/functions - STARTCMD="daemon fcron" + STARTCMD="daemon fcron -b" STOPCMD="killproc fcron" - FINALECHO="" + FINALECHO="echo" elif start-stop-daemon -V > /dev/null; then STARTCMD="start-stop-daemon --start --quiet --exec $SBIN/fcron -- -b" STOPCMD="start-stop-daemon --stop --quiet --exec $SBIN/fcron"