]> granicus.if.org Git - fcron/commitdiff
Initial revision
authorthib <thib>
Sun, 11 Feb 2001 21:16:34 +0000 (21:16 +0000)
committerthib <thib>
Sun, 11 Feb 2001 21:16:34 +0000 (21:16 +0000)
script/fcron.sh [new file with mode: 0755]

diff --git a/script/fcron.sh b/script/fcron.sh
new file mode 100755 (executable)
index 0000000..f01b769
--- /dev/null
@@ -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