From 5628e3a15ff1740188cd0c4fb50b85ce91f5a21b Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 23:57:12 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.8.13-1mamba;Wed Dec 11 2013] --- README.md | 7 +++++++ ipmitool.spec | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 ipmitool.spec diff --git a/README.md b/README.md index 63705b3..2579d99 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,9 @@ # ipmitool +ipmitool is a utility for managing and configuring devices that support the Intelligent Platform Management Interface. +IPMI is an open standard for monitoring, logging, recovery, inventory, and control of hardware that is implemented independent of the main CPU, BIOS, and OS. +The service processor (or Baseboard Management Controller, BMC) is the brain behind platform management and its primary purpose is to handle the autonomous sensor monitoring and event logging features. + +The ipmitool program provides a simple command-line interface to this BMC. +It features the ability to read the sensor data repository (SDR) and print sensor values, display the contents of the System Event Log (SEL), print Field Replaceable Unit (FRU) inventory information, read and set LAN configuration parameters, and perform remote chassis power control. + diff --git a/ipmitool.spec b/ipmitool.spec new file mode 100644 index 0000000..ddc61e9 --- /dev/null +++ b/ipmitool.spec @@ -0,0 +1,57 @@ +Name: ipmitool +Version: 1.8.13 +Release: 1mamba +Summary: A utility for managing and configuring IPMI-enabled devices +Group: System/Management +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://ipmitool.sourceforge.net/ +Source: http://downloads.sourceforge.net/project/ipmitool/ipmitool/%{version}/ipmitool-%{version}.tar.bz2 +License: BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libncurses-devel +BuildRequires: libopenssl-devel +BuildRequires: libreadline-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +ipmitool is a utility for managing and configuring devices that support the Intelligent Platform Management Interface. +IPMI is an open standard for monitoring, logging, recovery, inventory, and control of hardware that is implemented independent of the main CPU, BIOS, and OS. +The service processor (or Baseboard Management Controller, BMC) is the brain behind platform management and its primary purpose is to handle the autonomous sensor monitoring and event logging features. + +The ipmitool program provides a simple command-line interface to this BMC. +It features the ability to read the sensor data repository (SDR) and print sensor values, display the contents of the System Event Log (SEL), print Field Replaceable Unit (FRU) inventory information, read and set LAN configuration parameters, and perform remote chassis power control. + +%debug_package + +%prep +%setup -q + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/ipmitool +%{_sbindir}/ipmievd +%dir %{_datadir}/ipmitool +%{_datadir}/ipmitool/oem_ibm_sel_map +%dir %{_docdir}/ipmitool +%{_docdir}/ipmitool/* +%{_mandir}/man1/ipmitool.1* +%{_mandir}/man8/ipmievd.8* + +%changelog +* Wed Dec 11 2013 Silvan Calarco 1.8.13-1mamba +- package created using the webbuild interface