summaryrefslogtreecommitdiffstats
path: root/init.d/cron
diff options
context:
space:
mode:
Diffstat (limited to 'init.d/cron')
-rwxr-xr-xinit.d/cron13
1 files changed, 13 insertions, 0 deletions
diff --git a/init.d/cron b/init.d/cron
new file mode 100755
index 0000000..280035e
--- /dev/null
+++ b/init.d/cron
@@ -0,0 +1,13 @@
+#!/sbin/runscript
+
+start() {
+ ebegin "Starting cron"
+ crond $CRON_OPTS
+ eend $?
+}
+
+stop () {
+ ebegin "Stopping cron"
+ killall crond
+ eend $?
+}