From: Thibault Godouet Date: Sun, 11 Feb 2001 21:16:34 +0000 (+0000) Subject: Initial revision X-Git-Tag: ver2_9_4~410 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8a874404fd01e9d5e15556497095b4576474198;p=thirdparty%2Ffcron.git Initial revision --- diff --git a/script/fcron.sh b/script/fcron.sh new file mode 100755 index 0000000..f01b769 --- /dev/null +++ b/script/fcron.sh @@ -0,0 +1,14 @@ +#!/bin/sh +# Start fcron at boot time under FreeBSD + +SBIN=@@DESTSBIN@ + +case "$1" in + start) + $SBIN/fcron -b && echo -n "fcron" + ;; + *) + echo "Usage: fcron start" + exit 1 + ;; +esac \ No newline at end of file