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/rasdaemon/files/rasdaemon.openrc

19 lines
369 B

#!/sbin/openrc-run
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
description="Starts ${SVCNAME} service"
command="/usr/sbin/${SVCNAME}"
command_args="--foreground --record"
pidfile=/run/${SVCNAME}.pid
command_background=true
start_post() {
"${command}" --enable
}
stop_post() {
"${command}" --disable
}