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/app-admin/gkrellm/files/gkrellmd

22 lines
536 B

#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
need net
after lm_sensors
after hddtemp
}
start() {
ebegin "Starting GNU Krell Monitor daemon"
start-stop-daemon --start --quiet --background --pidfile /var/run/gkrellmd.pid --make-pidfile --exec /usr/bin/gkrellmd -- ${GKRELLMD_OPTS}
eend $?
}
stop() {
ebegin "Stopping GNU Krell Monitor daemon"
start-stop-daemon --stop --quiet --pidfile /var/run/gkrellmd.pid --name gkrellmd
eend $?
}