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/mcelog/files/mcelog.init

30 lines
551 B

#!/sbin/openrc-run
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
description='Start/stop mcelog in daemon mode'
PIDFILE="/var/run/mcelog.pid"
depend() {
after udev
need localmount
use logging
}
start() {
ebegin "Starting mcelog"
start-stop-daemon \
--start \
--pidfile ${PIDFILE} \
--exec /usr/sbin/mcelog -- --daemon --pidfile ${PIDFILE} ${MCELOG_OPTS}
eend $?
}
stop() {
ebegin "Stopping mcelog"
start-stop-daemon --stop --pidfile ${PIDFILE}
eend $?
}