summaryrefslogtreecommitdiff
path: root/sys-apps/ipmitool/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-12-15 09:32:31 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-12-15 09:32:31 +0000
commitffec4b922807fb67af8fdef84ac67f52e9168f81 (patch)
tree4fa2bb5a88f6af2e86c4421917d6e969e3b780ad /sys-apps/ipmitool/files
parent337b0e33a7c7a910e94b011161f8ea67c6be10c4 (diff)
gentoo auto-resync : 15:12:2022 - 09:32:31
Diffstat (limited to 'sys-apps/ipmitool/files')
-rw-r--r--sys-apps/ipmitool/files/exchange-bmc-os-info-1.8.18.initd23
-rw-r--r--sys-apps/ipmitool/files/ipmitool-1.8.18-ipmievd.confd27
-rw-r--r--sys-apps/ipmitool/files/ipmitool-1.8.18-ipmievd.initd28
-rw-r--r--sys-apps/ipmitool/files/log_bmc-1.8.18.initd25
4 files changed, 0 insertions, 103 deletions
diff --git a/sys-apps/ipmitool/files/exchange-bmc-os-info-1.8.18.initd b/sys-apps/ipmitool/files/exchange-bmc-os-info-1.8.18.initd
deleted file mode 100644
index 9c63983f21f3..000000000000
--- a/sys-apps/ipmitool/files/exchange-bmc-os-info-1.8.18.initd
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-# /etc/init.d/exchange-bmc-os-info
-
-name="exchange-bmc-os-info"
-description="Exchange Information between BMC and OS"
-command=/usr/libexec/exchange-bmc-os-info
-command_args=""
-: "${DEVICENUM:=0}" # which BMC
-required_files=/dev/ipmi${DEVICENUM}
-
-depend() {
- use hostname modules
- keyword -docker -lxc -prefix -systemd-nspawn
-}
-
-start() {
- "${command}" start
-}
-stop() {
- "${command}" stop
-}
diff --git a/sys-apps/ipmitool/files/ipmitool-1.8.18-ipmievd.confd b/sys-apps/ipmitool/files/ipmitool-1.8.18-ipmievd.confd
deleted file mode 100644
index b860c23c7f89..000000000000
--- a/sys-apps/ipmitool/files/ipmitool-1.8.18-ipmievd.confd
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-# /etc/conf.d/ipmievd
-
-# Interfaces:
-# open Linux OpenIPMI Interface
-# imb Intel IMB Interface
-# bmc IPMI v2.0 BMC interface
-# lan IPMI v1.5 LAN Interface
-# lanplus IPMI v2.0 RMCP+ LAN Interface
-
-INTERFACE="open"
-
-# Commands:
-# open Use OpenIPMI for asyncronous notification of events
-# sel Poll SEL for notification of events
-#
-# 'pidfile=...' will be appended!
-COMMAND="open daemon"
-
-# Options.
-
-OPTIONS=""
-
-# Device number:
-# Used to target a specific BMC on a multi-node, multi-BMC system via the open interface
-DEVICENUM=0
diff --git a/sys-apps/ipmitool/files/ipmitool-1.8.18-ipmievd.initd b/sys-apps/ipmitool/files/ipmitool-1.8.18-ipmievd.initd
deleted file mode 100644
index e8ef2c39d454..000000000000
--- a/sys-apps/ipmitool/files/ipmitool-1.8.18-ipmievd.initd
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-# /etc/init.d/ipmievd
-
-depend() {
- use logger modules
- keyword -docker -lxc -prefix -systemd-nspawn
-}
-
-# TODO: ipmievd has a mode where it could be used to monitor multiple BMCs via
-# DEVICENUM or remote systems, and it would be valid to run multiple instances.
-# That is not supported by this init script at this time.
-
-description="IPMI event daemon for sending events to syslog LOCAL4"
-
-: "${DEVICENUM:=0}"
-: "${INTERFACE:=open}"
-: "${COMMAND:=open daemon}"
-: "${OPTIONS:=}"
-
-daemon=ipmievd
-
-pidfile=/run/${daemon}.pid${DEVICENUM} # see manpage re suffix
-command=/usr/sbin/${daemon}
-cachefile=/run/${daemon}.${DEVICENUM}.sdr-cache
-command_args="-d ${DEVICENUM} -S ${cachefile} -I ${INTERFACE} ${OPTIONS} ${COMMAND} pidfile=${pidfile}"
-required_files=/dev/ipmi$DEVICENUM
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
-}