summaryrefslogtreecommitdiff
path: root/sys-apps/ipmitool/files/log_bmc-1.8.18.initd
diff options
context:
space:
mode:
Diffstat (limited to 'sys-apps/ipmitool/files/log_bmc-1.8.18.initd')
-rw-r--r--sys-apps/ipmitool/files/log_bmc-1.8.18.initd25
1 files changed, 0 insertions, 25 deletions
diff --git a/sys-apps/ipmitool/files/log_bmc-1.8.18.initd b/sys-apps/ipmitool/files/log_bmc-1.8.18.initd
deleted file mode 100644
index 4064edf3b84d..000000000000
--- a/sys-apps/ipmitool/files/log_bmc-1.8.18.initd
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-name="log_bmc"
-description="Add SEL entries to indicate OS Boot status"
-command=/usr/libexec/log_bmc.sh
-command_args=""
-: "${DEVICENUM:=0}" # which BMC
-required_files=/dev/ipmi${DEVICENUM}
-
-depend() {
- use modules
- after ipmievd # to capture our own log event
- keyword -docker -lxc -prefix -systemd-nspawn
-}
-
-start() {
- # TODO: should this keep start so it only fires once per boot?
- "${command}" os_boot
-}
-
-stop() {
- "${command}" os_shutdown
-}