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/net-analyzer/munin/files/munin-asyncd.init.2

20 lines
452 B

#!/sbin/openrc-run
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
command=/usr/libexec/munin/munin-asyncd
command_args="--fork"
pidfile="/run/munin-asyncd.pid"
start_stop_daemon_args="--background --make-pidfile --user munin-async"
depend() {
need munin-node
before cron
}
start_pre() {
checkpath -d -o munin-async:munin -m 0750 /var/spool/munin-async
}
# vim: filetype=gentoo-init-d: