diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2021-01-18 20:43:53 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-01-21 00:04:39 +0100 |
commit | 74796bf9788e1ca466bdcbde6c7b548765f2cabf (patch) | |
tree | 4648f1def47a9194a0dea6eab7db204fa3681643 /app-admin | |
parent | app-admin/whowatch: remove unused patch (diff) | |
download | gentoo-74796bf9788e1ca466bdcbde6c7b548765f2cabf.tar.gz gentoo-74796bf9788e1ca466bdcbde6c7b548765f2cabf.tar.bz2 gentoo-74796bf9788e1ca466bdcbde6c7b548765f2cabf.zip |
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>
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/rasdaemon/files/ras-mc-ctl.openrc | 10 | ||||
-rw-r--r-- | app-admin/rasdaemon/files/rasdaemon.openrc | 18 | ||||
-rw-r--r-- | app-admin/rasdaemon/files/rasdaemon.openrc-r1 | 24 |
3 files changed, 0 insertions, 52 deletions
diff --git a/app-admin/rasdaemon/files/ras-mc-ctl.openrc b/app-admin/rasdaemon/files/ras-mc-ctl.openrc deleted file mode 100644 index c428d78e64da..000000000000 --- a/app-admin/rasdaemon/files/ras-mc-ctl.openrc +++ /dev/null @@ -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 diff --git a/app-admin/rasdaemon/files/rasdaemon.openrc b/app-admin/rasdaemon/files/rasdaemon.openrc deleted file mode 100644 index 08fc09e64165..000000000000 --- a/app-admin/rasdaemon/files/rasdaemon.openrc +++ /dev/null @@ -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 -} diff --git a/app-admin/rasdaemon/files/rasdaemon.openrc-r1 b/app-admin/rasdaemon/files/rasdaemon.openrc-r1 deleted file mode 100644 index 6532826add50..000000000000 --- a/app-admin/rasdaemon/files/rasdaemon.openrc-r1 +++ /dev/null @@ -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 -} |