19 lines
264 B
Plaintext
19 lines
264 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2013 Project Gluon
|
||
|
|
||
|
START=50
|
||
|
|
||
|
SERVICE_USE_PID=1
|
||
|
SERVICE_WRITE_PID=1
|
||
|
SERVICE_DAEMONIZE=1
|
||
|
|
||
|
CRONDIR=/lib/gluon/cron
|
||
|
|
||
|
start () {
|
||
|
service_start /usr/sbin/gluon-crond "$CRONDIR"
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
service_stop /usr/sbin/gluon-crond
|
||
|
}
|