Update to 1.4.8
This commit is contained in:
parent
eb3110ce2f
commit
47e9b9f814
1
.gitignore
vendored
1
.gitignore
vendored
@ -36,3 +36,4 @@ freeipmi-0.8.8.tar.gz
|
|||||||
/freeipmi-1.4.3.tar.gz
|
/freeipmi-1.4.3.tar.gz
|
||||||
/freeipmi-1.4.4.tar.gz
|
/freeipmi-1.4.4.tar.gz
|
||||||
/freeipmi-1.4.6.tar.gz
|
/freeipmi-1.4.6.tar.gz
|
||||||
|
/freeipmi-1.4.8.tar.gz
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# Copyright (c) 2003 FreeIPMI Core Team
|
# Copyright (c) 2003 FreeIPMI Core Team
|
||||||
|
|
||||||
Name: freeipmi
|
Name: freeipmi
|
||||||
Version: 1.4.6
|
Version: 1.4.8
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: IPMI remote console and system management software
|
Summary: IPMI remote console and system management software
|
||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
@ -12,10 +12,10 @@ Source0: http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.gz
|
|||||||
Source1: bmc-watchdog.service
|
Source1: bmc-watchdog.service
|
||||||
Source2: ipmidetectd.service
|
Source2: ipmidetectd.service
|
||||||
Source3: ipmiseld.service
|
Source3: ipmiseld.service
|
||||||
BuildRequires: libgcrypt-devel texinfo systemd-units
|
BuildRequires: libgcrypt-devel texinfo systemd
|
||||||
Requires(preun): info systemd-units
|
Requires(preun): info systemd
|
||||||
Requires(post): info systemd-units systemd-sysv
|
Requires(post): info systemd systemd-sysv
|
||||||
Requires(postun): systemd-units
|
Requires(postun): systemd
|
||||||
Requires: OpenIPMI-modalias
|
Requires: OpenIPMI-modalias
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -23,33 +23,33 @@ The FreeIPMI project provides "Remote-Console" (out-of-band) and
|
|||||||
"System Management Software" (in-band) based on Intelligent
|
"System Management Software" (in-band) based on Intelligent
|
||||||
Platform Management Interface specification.
|
Platform Management Interface specification.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development package for FreeIPMI
|
Summary: Development package for FreeIPMI
|
||||||
Group: Development/System
|
Group: Development/System
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
%description devel
|
%description devel
|
||||||
Development package for FreeIPMI. This package includes the FreeIPMI
|
Development package for FreeIPMI. This package includes the FreeIPMI
|
||||||
header files and libraries.
|
header files and libraries.
|
||||||
|
|
||||||
%package bmc-watchdog
|
%package bmc-watchdog
|
||||||
Summary: IPMI BMC watchdog
|
Summary: IPMI BMC watchdog
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
%description bmc-watchdog
|
%description bmc-watchdog
|
||||||
Provides a watchdog daemon for OS monitoring and recovery.
|
Provides a watchdog daemon for OS monitoring and recovery.
|
||||||
|
|
||||||
%package ipmidetectd
|
%package ipmidetectd
|
||||||
Summary: IPMI node detection monitoring daemon
|
Summary: IPMI node detection monitoring daemon
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
%description ipmidetectd
|
%description ipmidetectd
|
||||||
Provides a tool and a daemon for IPMI node detection.
|
Provides a tool and a daemon for IPMI node detection.
|
||||||
|
|
||||||
%package ipmiseld
|
%package ipmiseld
|
||||||
Summary: IPMI SEL syslog logging daemon
|
Summary: IPMI SEL syslog logging daemon
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
%description ipmiseld
|
%description ipmiseld
|
||||||
IPMI SEL syslog logging daemon.
|
IPMI SEL syslog logging daemon.
|
||||||
|
|
||||||
%if %{?_with_debug:1}%{!?_with_debug:0}
|
%if %{?_with_debug:1}%{!?_with_debug:0}
|
||||||
@ -348,6 +348,19 @@ fi
|
|||||||
%dir %{_localstatedir}/cache/ipmiseld
|
%dir %{_localstatedir}/cache/ipmiseld
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Feb 23 2015 Christopher Meng <rpm@cicku.me> - 1.4.8-1
|
||||||
|
- Updated to freeipmi-1.4.8
|
||||||
|
- Fix segfault in crypt code with libgcrypt versions >= 1.6.0.
|
||||||
|
- Fix --fanout command line parse bug.
|
||||||
|
- Fix typ - from FRU spec, language "Tegulu" is actually "Telugu".
|
||||||
|
- Fix typ - in SEL session output, "Invalid Username of Password" to
|
||||||
|
"Invalid Username or Password".
|
||||||
|
- Loop on select() call if interrupted by EINTR in openipmi, ssif, and
|
||||||
|
sunbmc inband drivers.
|
||||||
|
- Fix integer overflow bug in ipmi-config when configure vlan ID > 255.
|
||||||
|
- Add workaround for ipmi-config issue on Supermicr - X10DDW-i.
|
||||||
|
- Fix error handling bug in bmc-info.
|
||||||
|
|
||||||
* Tue Nov 04 2014 Ales Ledvinka <aledvink@redhat.com> - 1.4.6-1
|
* Tue Nov 04 2014 Ales Ledvinka <aledvink@redhat.com> - 1.4.6-1
|
||||||
- Updated to upstream freeipmi-1.4.6
|
- Updated to upstream freeipmi-1.4.6
|
||||||
- In ipmi-fru, support output of DDR4 SDRAM modules.
|
- In ipmi-fru, support output of DDR4 SDRAM modules.
|
||||||
|
Loading…
Reference in New Issue
Block a user