e20f4c
%global       gitname     IPMITOOL
e20f4c
%global       gitversion  1_8_18
e20f4c
e20f4c
Name:         ipmitool
e20f4c
Summary:      Utility for IPMI control
e20f4c
Version:      1.8.18
37ca59
Release:      25%{?dist}
e20f4c
License:      BSD
e20f4c
URL:          http://ipmitool.sourceforge.net/
e20f4c
Source0:      https://github.com/%{name}/%{name}/archive/%{gitname}_%{gitversion}/%{name}-%{version}.tar.gz
e20f4c
Source1:      openipmi-ipmievd.sysconf
e20f4c
Source2:      ipmievd.service
e20f4c
Source3:      exchange-bmc-os-info.service
e20f4c
Source4:      exchange-bmc-os-info.sysconf
e20f4c
Source5:      set-bmc-url.sh
e20f4c
Source6:      exchange-bmc-os-info
e20f4c
e20f4c
Patch1:       0001-CVE-2011-4339-OpenIPMI.patch
e20f4c
# WARNING:  THIS PATCH MUST BE USED FOR RAWHIDE (f26+) BRANCH
e20f4c
Patch2:       0002-openssl.patch
e20f4c
Patch3:       0003-ipmitool-1.8.11-set-kg-key.patch
e20f4c
Patch4:       0004-slowswid.patch
e20f4c
Patch5:       0005-sensor-id-length.patch
e20f4c
Patch6:       0006-enable-usb.patch
e20f4c
Patch7:       0007-check-input.patch
e20f4c
Patch8:       0008-add-extern.patch
e20f4c
Patch9:       0009-best-cipher.patch
e20f4c
Patch10:      0010-pef-missing-newline.patch
e20f4c
Patch11:      0011-expand-sensor-name-column.patch
e20f4c
Patch12:      0012-CVE-2020-5208.patch
37ca59
Patch13:      0013-quanta-oem-support.patch
37ca59
Patch14:      0014-lanplus-cipher-retry.patch
37ca59
Patch15:      0015-lanplus-Cleanup.-Refix-6dec83ff-fix-be2c0c4b.patch
e20f4c
e20f4c
BuildRequires: openssl-devel readline-devel ncurses-devel
e20f4c
%{?systemd_requires}
e20f4c
BuildRequires: systemd
e20f4c
# bootstrap
e20f4c
BuildRequires: automake autoconf libtool
e20f4c
Obsoletes: OpenIPMI-tools < 2.0.14-3
e20f4c
Provides: OpenIPMI-tools = 2.0.14-3
e20f4c
e20f4c
e20f4c
%description
e20f4c
This package contains a utility for interfacing with devices that support
e20f4c
the Intelligent Platform Management Interface specification.  IPMI is
e20f4c
an open standard for machine health, inventory, and remote power control.
e20f4c
e20f4c
This utility can communicate with IPMI-enabled devices through either a
e20f4c
kernel driver such as OpenIPMI or over the RMCP LAN protocol defined in
e20f4c
the IPMI specification.  IPMIv2 adds support for encrypted LAN
e20f4c
communications and remote Serial-over-LAN functionality.
e20f4c
e20f4c
It provides commands for reading the Sensor Data Repository (SDR) and
e20f4c
displaying sensor values, displaying the contents of the System Event
e20f4c
Log (SEL), printing Field Replaceable Unit (FRU) information, reading and
e20f4c
setting LAN configuration, and chassis power control.
e20f4c
e20f4c
e20f4c
%package -n ipmievd
e20f4c
Requires: ipmitool
e20f4c
%{?systemd_requires}
e20f4c
BuildRequires: systemd
e20f4c
Summary: IPMI event daemon for sending events to syslog
e20f4c
%description -n ipmievd
e20f4c
ipmievd is a daemon which will listen for events from the BMC that are
e20f4c
being  sent to the SEL and also log those messages to syslog.
e20f4c
e20f4c
e20f4c
%package -n bmc-snmp-proxy
e20f4c
Requires: net-snmp
e20f4c
Requires: exchange-bmc-os-info
e20f4c
BuildArch: noarch
e20f4c
Summary: Reconfigure SNMP to include host SNMP agent within BMC
e20f4c
%description -n bmc-snmp-proxy
e20f4c
Given a host with BMC, this package would extend system configuration
e20f4c
of net-snmp to include redirections to BMC based SNMP.
e20f4c
e20f4c
e20f4c
%package -n exchange-bmc-os-info
e20f4c
Requires: hostname
e20f4c
Requires: ipmitool
e20f4c
BuildArch: noarch
e20f4c
%{?systemd_requires}
e20f4c
BuildRequires: systemd
e20f4c
BuildRequires: make
e20f4c
e20f4c
Summary: Let OS and BMC exchange info
e20f4c
e20f4c
%description -n exchange-bmc-os-info
e20f4c
Given a host with BMC, this package would pass the hostname &
e20f4c
OS information to the BMC and also capture the BMC ip info
e20f4c
for the host OS to use.
e20f4c
e20f4c
e20f4c
%prep
e20f4c
%autosetup -n %{name}-%{gitname}_%{gitversion} -p1
e20f4c
e20f4c
for f in AUTHORS ChangeLog; do
e20f4c
    iconv -f iso-8859-1 -t utf8 < ${f} > ${f}.utf8
e20f4c
    mv ${f}.utf8 ${f}
e20f4c
done
e20f4c
e20f4c
%build
e20f4c
# --disable-dependency-tracking speeds up the build
e20f4c
# --enable-file-security adds some security checks
e20f4c
# --disable-intf-free disables FreeIPMI support - we don't want to depend on
e20f4c
#   FreeIPMI libraries, FreeIPMI has its own ipmitoool-like utility.
e20f4c
e20f4c
# begin: release auto-tools
e20f4c
# Used to be needed by aarch64 support, now only cxoem patch makefiles are left.
e20f4c
aclocal
e20f4c
libtoolize --automake --copy
e20f4c
autoheader
e20f4c
automake --foreign --add-missing --copy
e20f4c
aclocal
e20f4c
autoconf
e20f4c
automake --foreign
e20f4c
# end: release auto-tools
e20f4c
e20f4c
%configure --disable-dependency-tracking --enable-file-security --disable-intf-free
e20f4c
make %{?_smp_mflags}
e20f4c
e20f4c
%install
e20f4c
make DESTDIR=%{buildroot} install
e20f4c
e20f4c
install -Dpm 644 %{SOURCE2} %{buildroot}%{_unitdir}/ipmievd.service
e20f4c
install -Dpm 644 %{SOURCE1} %{buildroot}%{_sysconfdir}/sysconfig/ipmievd
e20f4c
install -Dm 644 %{SOURCE3} %{buildroot}%{_unitdir}/exchange-bmc-os-info.service
e20f4c
install -Dm 644 %{SOURCE4} %{buildroot}%{_sysconfdir}/sysconfig/exchange-bmc-os-info
e20f4c
install -Dm 644 %{SOURCE5} %{buildroot}%{_sysconfdir}/profile.d/set-bmc-url.sh
e20f4c
install -Dm 755 %{SOURCE6} %{buildroot}%{_libexecdir}/exchange-bmc-os-info
e20f4c
e20f4c
e20f4c
install -Dm 644 contrib/bmc-snmp-proxy.sysconf %{buildroot}%{_sysconfdir}/sysconfig/bmc-snmp-proxy
e20f4c
install -Dm 644 contrib/bmc-snmp-proxy.service %{buildroot}%{_unitdir}/bmc-snmp-proxy.service
e20f4c
install -Dm 755 contrib/bmc-snmp-proxy         %{buildroot}%{_libexecdir}/bmc-snmp-proxy
e20f4c
e20f4c
%post -n ipmievd
e20f4c
%systemd_post ipmievd.service
e20f4c
e20f4c
%preun -n ipmievd
e20f4c
%systemd_preun ipmievd.service
e20f4c
e20f4c
%postun -n ipmievd
e20f4c
%systemd_postun_with_restart ipmievd.service
e20f4c
e20f4c
%post -n exchange-bmc-os-info
e20f4c
%systemd_post exchange-bmc-os-info.service
e20f4c
e20f4c
%preun -n exchange-bmc-os-info
e20f4c
%systemd_preun exchange-bmc-os-info.service
e20f4c
e20f4c
%postun -n exchange-bmc-os-info
e20f4c
%systemd_postun_with_restart exchange-bmc-os-info.service
e20f4c
e20f4c
e20f4c
%triggerun -- ipmievd < 1.8.11-7
e20f4c
# Save the current service runlevel info
e20f4c
# User must manually run systemd-sysv-convert --apply ipmievd
e20f4c
# to migrate them to systemd targets
e20f4c
/usr/bin/systemd-sysv-convert --save ipmievd >/dev/null 2>&1 ||:
e20f4c
e20f4c
# Run these because the SysV package being removed won't do them
e20f4c
/sbin/chkconfig --del ipmievd >/dev/null 2>&1 || :
e20f4c
/bin/systemctl try-restart ipmievd.service >/dev/null 2>&1 || :
e20f4c
e20f4c
%files
e20f4c
%{_bindir}/ipmitool
e20f4c
%{_mandir}/man1/ipmitool.1*
e20f4c
%doc %{_datadir}/doc/ipmitool
e20f4c
%{_datadir}/ipmitool
e20f4c
e20f4c
%files -n ipmievd
e20f4c
%config(noreplace) %{_sysconfdir}/sysconfig/ipmievd
e20f4c
%{_unitdir}/ipmievd.service
e20f4c
%{_sbindir}/ipmievd
e20f4c
%{_mandir}/man8/ipmievd.8*
e20f4c
e20f4c
%files -n exchange-bmc-os-info
e20f4c
%config(noreplace) %{_sysconfdir}/sysconfig/exchange-bmc-os-info
e20f4c
%{_sysconfdir}/profile.d/set-bmc-url.sh
e20f4c
%{_unitdir}/exchange-bmc-os-info.service
e20f4c
%{_libexecdir}/exchange-bmc-os-info
e20f4c
e20f4c
%files -n bmc-snmp-proxy
e20f4c
%config(noreplace) %{_sysconfdir}/sysconfig/bmc-snmp-proxy
e20f4c
%{_unitdir}/bmc-snmp-proxy.service
e20f4c
%{_libexecdir}/bmc-snmp-proxy
e20f4c
e20f4c
%changelog
37ca59
* Mon Feb  7 2022 Pavel Cahyna <pcahyna@redhat.com> - 1.8.18-25
37ca59
- Apply changes from RHEL 8 (#1811941, #1831158, #1951480)
37ca59
  Resolves: rhbz#2051621
37ca59
e20f4c
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.8.18-24
e20f4c
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
e20f4c
  Related: rhbz#1991688
e20f4c
e20f4c
* Wed Jun 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.8.18-23
e20f4c
- Rebuilt for RHEL 9 BETA for openssl 3.0
e20f4c
  Related: rhbz#1971065
e20f4c
e20f4c
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.8.18-22
e20f4c
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
e20f4c
e20f4c
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.18-21
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
e20f4c
e20f4c
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.18-20
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
e20f4c
e20f4c
* Thu Feb 06 2020 Václav Doležal <vdolezal@redhat.com> - 1.8.18-19
e20f4c
- Backport fix for CVE-2020-5208 (#1798722); for details see
e20f4c
  https://github.com/ipmitool/ipmitool/security/advisories/GHSA-g659-9qxw-p7cp
e20f4c
e20f4c
* Mon Feb 03 2020 Václav Doležal <vdolezal@redhat.com> - 1.8.18-18
e20f4c
- Backport patch to autoselect best cipher suite when working over lanplus backend
e20f4c
- Fixed 'ipmitool pef status/info' not printing final newline
e20f4c
- Expanded column for sensor name in 'ipmi sdr/sensor' output so longer names are aligned
e20f4c
e20f4c
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.18-17
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
e20f4c
e20f4c
* Thu Jan 23 2020 Václav Doležal <vdolezal@redhat.com> - 1.8.18-16
e20f4c
- Fix FTBFS with GCC 10
e20f4c
e20f4c
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.18-15
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
e20f4c
e20f4c
* Sun Feb 17 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.8.18-14
e20f4c
- Rebuild for readline 8.0
e20f4c
e20f4c
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.18-13
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
e20f4c
e20f4c
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.18-12
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
e20f4c
e20f4c
* Tue Apr 10 2018 Josef Ridky <jridky@redhat.com> - 1.8.18-11
e20f4c
- Project moved to github
e20f4c
e20f4c
* Thu Feb 22 2018 Josef Ridky <jridky@redhat.com> - 1.8.18-10
e20f4c
- Spec clean up
e20f4c
- Add support to set kg key
e20f4c
- Fix DDR4 memory issues
e20f4c
- Increase length of sensor id
e20f4c
- Enable usb interface by default
e20f4c
- Fix input options 
e20f4c
e20f4c
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.18-9
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
e20f4c
e20f4c
* Tue Jan 30 2018 Josef Ridky <jridky@redhat.com> - 1.8.18-8
e20f4c
- remove old systemd dependencies
e20f4c
e20f4c
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.18-7
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
e20f4c
e20f4c
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.18-6
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
e20f4c
e20f4c
* Tue Feb 21 2017 Josef Ridky <jridky@redhat.com> - 1.8.18-5
e20f4c
- Fix allocation issue
e20f4c
e20f4c
* Tue Feb 21 2017 Josef Ridky <jridky@redhat.com> - 1.8.18-4
e20f4c
- Add support for OpenSSL-1.1.0 library (#1423743)
e20f4c
e20f4c
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.18-3
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
e20f4c
e20f4c
* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 1.8.18-2
e20f4c
- Rebuild for readline 7.x
e20f4c
e20f4c
* Mon Oct 10 2016 Boris Ranto <branto@redhat.com> - 0:1.8.18-1
e20f4c
- New version (0:1.8.18-1)
e20f4c
- CVE-2011-4339 OpenIPMI
e20f4c
e20f4c
* Tue May 10 2016 Boris Ranto <branto@redhat.com> - 0:1.8.17-1
e20f4c
- New version (0:1.8.17-1)
e20f4c
- CVE-2011-4339 OpenIPMI
e20f4c
e20f4c
* Tue Feb 23 2016 Boris Ranto <branto@redhat.com> - 1.8.16-1
e20f4c
- Rebase to version 1.8.16
e20f4c
e20f4c
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.15-6
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
e20f4c
e20f4c
* Tue Nov 24 2015 Boris Ranto <branto@redhat.com> - 1.8.15-5
e20f4c
- Split ipmievd bits into a separate package
e20f4c
e20f4c
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.15-4
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
e20f4c
e20f4c
* Wed Apr 22 2015 Ales Ledvinka <aledvink@redhat.com> 1.8.15-3
e20f4c
- Remove modalias dependency.
e20f4c
e20f4c
* Thu Mar 19 2015 Ales Ledvinka <aledvink@redhat.com> 1.8.15-1
e20f4c
- Upstream release 1.8.15
e20f4c
e20f4c
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.13-6
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
e20f4c
e20f4c
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.13-5
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
e20f4c
e20f4c
* Tue Apr  8 2014 Ales Ledvinka <aledvink@redhat.com> 1.8.13-4
e20f4c
- Support for environment variable short options.
e20f4c
e20f4c
* Tue Nov  5 2013 Ales Ledvinka <aledvink@redhat.com> 1.8.13-3
e20f4c
- Cleanup of dual bridge option.
e20f4c
e20f4c
* Tue Oct 15 2013 Ales Ledvinka <aledvink@redhat.com> 1.8.13-2
e20f4c
- BMC SNMP agent redirection
e20f4c
e20f4c
* Mon Oct 14 2013 Ales Ledvinka <aledvink@redhat.com> 1.8.13-1
e20f4c
- Upstream release 1.8.13
e20f4c
e20f4c
* Fri Aug 09 2013 Ales Ledvinka <aledvink@redhat.com> 1.8.12-13073103
e20f4c
- Avoid FIPS mode crashes if possible.
e20f4c
- Document FIPS limitations.
e20f4c
e20f4c
* Wed Jul  31 2013 Ales Ledvinka <aledvink@redhat.com> 1.8.12-13073101
e20f4c
- Include current upstream bugfixes.
e20f4c
e20f4c
* Thu Jul 25 2013 Ales Ledvinka <aledvink@redhat.com> 1.8.12-16
e20f4c
- Calxeda OEM extensions.
e20f4c
e20f4c
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.12-15
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
e20f4c
e20f4c
* Mon Dec 17 2012 Praveen K Paladugu <praveen_paladugu@dell.com> - 1.8.12-14
e20f4c
- Updated the exchange-bmc-os-info's service file with Requires stmt
e20f4c
e20f4c
* Fri Dec 14 2012 Ales Ledvinka <aledvink@redhat.com> 1.8.12-13
e20f4c
- fixed argument parsing leaks
e20f4c
- ask user for password only once and do so only when interactive password
e20f4c
  is the chosen password method.
e20f4c
e20f4c
* Thu Dec 13 2012 Praveen K Paladugu <praveen_paladugu@dell.com> - 1.8.12-12
e20f4c
- Removed the extra symbols in the patch, as the build is failing.
e20f4c
e20f4c
* Thu Dec 13 2012 Praveen K Paladugu <praveen_paladugu@dell.com> - 1.8.12-11
e20f4c
- Subpackage for exchange-bmc-os-info as it requires OPenIPMI
e20f4c
e20f4c
* Wed Dec 12 2012 Ales Ledvinka <aledvink@redhat.com> 1.8.12-10
e20f4c
- documented fixed and conditional defaults. adjusted synopsis
e20f4c
e20f4c
* Tue Dec 4 2012 Ales Ledvinka <aledvink@redhat.com> 1.8.12-9
e20f4c
- fixed ipmitool documentation
e20f4c
e20f4c
* Fri Nov 30 2012 Praveen K Paladugu <praveen_paladugu@dell.com> 1.8.12-8
e20f4c
- service & scripts to allow OS to capture BMC's IP & URL info
e20f4c
- Also pass the OS information to BMC
e20f4c
- patches submitted by Charles Rose (charles_rose[at]dell.com)
e20f4c
e20f4c
* Fri Nov 16 2012 Ales Ledvinka <aledvink@redhat.com> 1.8.12-7
e20f4c
- failed sol session activation crashes while logging exit
e20f4c
e20f4c
* Fri Nov 16 2012 Ales Ledvinka <aledvink@redhat.com> 1.8.12-6
e20f4c
- revert default cipersuite back to 3 which includes integrity and confidentiality
e20f4c
e20f4c
* Thu Oct 18 2012 Dan Horák <dan[at]danny.cz> - 1.8.12-5
e20f4c
- fix build on big endian arches
e20f4c
e20f4c
* Wed Oct 17 2012 Ales Ledvinka <aledvink@redhat.cz> 1.8.12-4
e20f4c
- support setting OS name and Hostname on BMC
e20f4c
e20f4c
* Tue Sep 04 2012 Dan Horák <dan[at]danny.cz> - 1.8.12-3
e20f4c
- fix build on big endian arches
e20f4c
e20f4c
* Mon Aug 27 2012 Jan Safranek <jsafrane@redhat.com> - 1.8.12-2
e20f4c
- Fixed starting ipmievd under systemd (#819234).
e20f4c
- Updated RPM scriplets with latest systemd-rpm macros (#850161)
e20f4c
e20f4c
* Fri Aug 10 2012 Jan Safranek <jsafrane@redhat.com> - 1.8.12-1
e20f4c
- update to ipmitool-1.8.12
e20f4c
e20f4c
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.11-12
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e20f4c
e20f4c
* Tue May 22 2012 Jan Safranek <jsafrane@redhat.com> - 1.8.11-11
e20f4c
- start ipmievd.service after ipmi (#819234)
e20f4c
e20f4c
* Thu Apr 26 2012 Jan Safranek <jsafrane@redhat.com> - 1.8.11-10
e20f4c
- fixed ipmievd.service systemd unit (#807757)
e20f4c
e20f4c
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.11-9
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
e20f4c
e20f4c
* Tue Dec 13 2011 Jan Safranek <jsafrane@redhat.com> - 1.8.11-8
e20f4c
- fixed CVE-2011-4339
e20f4c
e20f4c
* Mon Sep 12 2011 Tom Callaway <spot@fedoraproject.org> - 1.8.11-7
e20f4c
- convert to systemd
e20f4c
e20f4c
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.11-6
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
e20f4c
e20f4c
* Wed Mar  3 2010 Jan Safranek <jsafrane@redhat.com> - 1.8.11-5
e20f4c
- Fixed exit code of ipmievd initscript with wrong arguments
e20f4c
e20f4c
* Mon Nov  2 2009 Jan Safranek  <jsafrane@redhat.com> 1.8.11-4
e20f4c
- fix ipmievd initscript 'condrestart' action (#532188)
e20f4c
e20f4c
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.8.11-3
e20f4c
- rebuilt with new openssl
e20f4c
e20f4c
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.11-2
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
e20f4c
e20f4c
* Thu Feb 26 2009 Jan Safranek <jsafrane@redhat.com> 1.8.11-1
e20f4c
- updated to new version
e20f4c
e20f4c
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.10-4
e20f4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
e20f4c
e20f4c
* Sat Jan 17 2009 Tomas Mraz <tmraz@redhat.com> 1.8.10-3
e20f4c
- rebuild with new openssl
e20f4c
e20f4c
* Tue Oct 14 2008 Jan Safranek <jsafrane@redhat.com> 1.8.10-2
e20f4c
- fix issues found during package review:
e20f4c
  - clear Default-Start: line in the init script, the service should be 
e20f4c
    disabled by default
e20f4c
  - added Obsoletes: OpenIPMI-tools
e20f4c
  - compile with --disable-dependency-tracking to speed things up
e20f4c
  - compile with --enable-file-security
e20f4c
  - compile with --disable-intf-free, don't depend on FreeIPMI libraries
e20f4c
    (FreeIPMI has its own ipmitool-like utility)
e20f4c
e20f4c
* Mon Oct 13 2008 Jan Safranek <jsafrane@redhat.com> 1.8.10-1
e20f4c
- package created, based on upstream .spec file