You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-process/incron/files/incrond.init

21 lines
435 B

#!/sbin/openrc-run
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
use clock logger
need localmount
}
start() {
ebegin "Starting incrond"
start-stop-daemon --start --pidfile /var/run/incrond.pid --exec /usr/sbin/incrond -- -f /etc/incron.conf
eend $?
}
stop() {
ebegin "Stopping incrond"
start-stop-daemon --stop --pidfile /var/run/incrond.pid
eend $?
}