app-admin/rasdaemon: remove unused files

Closes: https://github.com/gentoo/gentoo/pull/19111
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
This commit is contained in:
Michael Mair-Keimberger
2021-01-18 20:43:53 +01:00
committed by Conrad Kostecki
parent 61a73249d4
commit 74796bf978
3 changed files with 0 additions and 52 deletions

View File

@@ -1,10 +0,0 @@
#!/sbin/openrc-run
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
description="Starts ${SVCNAME} service for rasdaemon"
command="/usr/sbin/${SVCNAME}"
command_args="--register-labels"
pidfile=/run/${SVCNAME}.pid
command_background=true

View File

@@ -1,18 +0,0 @@
#!/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
}

View File

@@ -1,24 +0,0 @@
#!/sbin/openrc-run
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
description="Starts Reliablity, Availability and Serviceability (RAS) service"
depend() {
need localmount
use logger
}
command="/usr/sbin/rasdaemon"
command_args="--foreground --record"
command_background=true
pidfile=/run/${RC_SVCNAME}.pid
start_post() {
"${command}" --enable >/dev/null 2>&1
}
stop_post() {
"${command}" --disable >/dev/null 2>&1
}