summaryrefslogtreecommitdiff
path: root/app-admin/rasdaemon/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-01-22 20:28:19 +0000
committerV3n3RiX <venerix@redcorelinux.org>2021-01-22 20:28:19 +0000
commitabaa75b10f899ada8dd05b23cc03205064394bc6 (patch)
treeeca3dd248b73b92013cba00a0fcc1edf2696e19a /app-admin/rasdaemon/files
parent24fd814c326e282c4321965c31f341dad77e270d (diff)
gentoo resync : 22.01.2021
Diffstat (limited to 'app-admin/rasdaemon/files')
-rw-r--r--app-admin/rasdaemon/files/ras-mc-ctl.openrc10
-rw-r--r--app-admin/rasdaemon/files/rasdaemon.openrc18
-rw-r--r--app-admin/rasdaemon/files/rasdaemon.openrc-r124
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
-}