1d1c79
%global _hardened_build 1
1d1c79
# Copyright (c) 2003 FreeIPMI Core Team
1d1c79
1d1c79
Name:             freeipmi
406809
Version:          1.6.8
1d1c79
Release:          1%{?dist}
1d1c79
Summary:          IPMI remote console and system management software
1d1c79
License:          GPLv3+
1d1c79
URL:              http://www.gnu.org/software/freeipmi/
1d1c79
Source0:          http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.gz
1d1c79
Source1:          bmc-watchdog.service
1d1c79
Source2:          ipmidetectd.service
1d1c79
Source3:          ipmiseld.service
1d1c79
BuildRequires:    libgcrypt-devel texinfo systemd 
1d1c79
%{?systemd_requires}
1d1c79
BuildRequires:    gcc
1d1c79
Requires(post):   /sbin/ldconfig
1d1c79
1d1c79
%description
1d1c79
The FreeIPMI project provides "Remote-Console" (out-of-band) and
1d1c79
"System Management Software" (in-band) based on Intelligent
1d1c79
Platform Management Interface specification.
1d1c79
1d1c79
%package          devel
1d1c79
Summary:          Development package for FreeIPMI
1d1c79
Requires:         %{name}%{?_isa} = %{version}-%{release}
1d1c79
%description      devel
1d1c79
Development package for FreeIPMI. This package includes the FreeIPMI
1d1c79
header files and libraries.
1d1c79
1d1c79
%package          bmc-watchdog
1d1c79
Summary:          IPMI BMC watchdog
1d1c79
Requires:         %{name}%{?_isa} = %{version}-%{release}
1d1c79
%description      bmc-watchdog
1d1c79
Provides a watchdog daemon for OS monitoring and recovery.
1d1c79
1d1c79
%package          ipmidetectd
1d1c79
Summary:          IPMI node detection monitoring daemon
1d1c79
Requires:         %{name}%{?_isa} = %{version}-%{release}
1d1c79
%description      ipmidetectd
1d1c79
Provides a tool and a daemon for IPMI node detection.
1d1c79
1d1c79
%package          ipmiseld
1d1c79
Summary:          IPMI SEL syslog logging daemon
1d1c79
Requires:         %{name}%{?_isa} = %{version}-%{release}
1d1c79
%description      ipmiseld
1d1c79
IPMI SEL syslog logging daemon.
1d1c79
1d1c79
%if %{?_with_debug:1}%{!?_with_debug:0}
1d1c79
  %global _enable_debug --enable-debug --enable-trace --enable-syslog
1d1c79
%endif
1d1c79
1d1c79
%prep
1d1c79
%autosetup -p1
1d1c79
1d1c79
%build
1d1c79
export CFLAGS="-D_GNU_SOURCE $RPM_OPT_FLAGS"
1d1c79
%configure --program-prefix=%{?_program_prefix:%{_program_prefix}} \
1d1c79
           %{?_enable_debug} --disable-static
1d1c79
make %{?_smp_mflags}
1d1c79
1d1c79
%install
1d1c79
make install DESTDIR=%{buildroot}
1d1c79
rm -rf %{buildroot}%{_infodir}/dir
1d1c79
# kludge to get around rpmlint complaining about 0 length semephore file
1d1c79
echo freeipmi > %{buildroot}%{_localstatedir}/lib/freeipmi/ipckey
1d1c79
1d1c79
# Remove .la files
1d1c79
find %{buildroot} -name '*.la' -delete -print
1d1c79
1d1c79
# Install systemd units
1d1c79
install -m755 -d %{buildroot}%{_unitdir}
1d1c79
install -pm644 %SOURCE1 %SOURCE2 %SOURCE3 %{buildroot}%{_unitdir}/
1d1c79
1d1c79
# Remove initscripts
1d1c79
rm -frv %{buildroot}%{_initrddir} %{buildroot}%{_sysconfdir}/init.d
1d1c79
1d1c79
%post
1d1c79
/sbin/install-info %{_infodir}/freeipmi-faq.info.gz %{_infodir}/dir &>/dev/null || :
1d1c79
/sbin/ldconfig
1d1c79
1d1c79
%preun
1d1c79
if [ $1 = 0 ]; then
1d1c79
    /sbin/install-info --delete %{_infodir}/freeipmi-faq.info.gz %{_infodir}/dir &>/dev/null || :
1d1c79
fi
1d1c79
1d1c79
%ldconfig_postun
1d1c79
1d1c79
%post bmc-watchdog
1d1c79
%systemd_post bmc-watchdog.service
1d1c79
1d1c79
%preun bmc-watchdog
1d1c79
%systemd_preun bmc-watchdog.service
1d1c79
1d1c79
%postun bmc-watchdog
1d1c79
%systemd_postun_with_restart bmc-watchdog.service
1d1c79
1d1c79
%post ipmiseld
1d1c79
%systemd_post ipmiseld.service
1d1c79
1d1c79
%preun ipmiseld
1d1c79
%systemd_preun ipmiseld.service
1d1c79
1d1c79
%postun ipmiseld
1d1c79
%systemd_postun_with_restart ipmiseld.service
1d1c79
1d1c79
%post ipmidetectd
1d1c79
%systemd_post ipmidetectd.service
1d1c79
1d1c79
%preun ipmidetectd
1d1c79
%systemd_preun ipmidetectd.service
1d1c79
1d1c79
%postun ipmidetectd
1d1c79
%systemd_postun_with_restart ipmidetectd.service
1d1c79
1d1c79
%triggerun -- freeipmi-bmc-watchdog < 1.1.1-2
1d1c79
# Save the current service runlevel info
1d1c79
# User must manually run systemd-sysv-convert --apply httpd
1d1c79
# to migrate them to systemd targets
1d1c79
/usr/bin/systemd-sysv-convert --save bmc-watchdog >/dev/null 2>&1 ||:
1d1c79
1d1c79
# Run these because the SysV package being removed won't do them
1d1c79
/sbin/chkconfig --del bmc-watchdog >/dev/null 2>&1 || :
1d1c79
/bin/systemctl try-restart bmc-watchdog.service >/dev/null 2>&1 || :
1d1c79
1d1c79
%triggerun -- freeipmi-ipmidetectd < 1.1.1-2
1d1c79
# Save the current service runlevel info
1d1c79
# User must manually run systemd-sysv-convert --apply httpd
1d1c79
# to migrate them to systemd targets
1d1c79
/usr/bin/systemd-sysv-convert --save ipmidetectd >/dev/null 2>&1 ||:
1d1c79
1d1c79
# Run these because the SysV package being removed won't do them
1d1c79
/sbin/chkconfig --del ipmidetectd >/dev/null 2>&1 || :
1d1c79
/bin/systemctl try-restart ipmidetectd.service >/dev/null 2>&1 || :
1d1c79
1d1c79
%files
1d1c79
%dir %{_sysconfdir}/freeipmi/
1d1c79
%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/freeipmi/freeipmi.conf
1d1c79
%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/freeipmi/ipmidetect.conf
1d1c79
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/freeipmi/freeipmi_interpret_sel.conf
1d1c79
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/freeipmi/freeipmi_interpret_sensor.conf
1d1c79
%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/freeipmi/libipmiconsole.conf
1d1c79
%doc %{_datadir}/doc/%{name}/AUTHORS
1d1c79
%doc %{_datadir}/doc/%{name}/COPYING
1d1c79
%doc %{_datadir}/doc/%{name}/ChangeLog
1d1c79
%doc %{_datadir}/doc/%{name}/ChangeLog.0
1d1c79
%doc %{_datadir}/doc/%{name}/INSTALL
1d1c79
%doc %{_datadir}/doc/%{name}/NEWS
1d1c79
%doc %{_datadir}/doc/%{name}/README
1d1c79
%doc %{_datadir}/doc/%{name}/README.argp
1d1c79
%doc %{_datadir}/doc/%{name}/README.build
1d1c79
%doc %{_datadir}/doc/%{name}/README.openipmi
1d1c79
%doc %{_datadir}/doc/%{name}/TODO
1d1c79
%doc %{_infodir}/*
1d1c79
%doc %{_datadir}/doc/%{name}/COPYING.ipmiping
1d1c79
%doc %{_datadir}/doc/%{name}/COPYING.ipmipower
1d1c79
%doc %{_datadir}/doc/%{name}/COPYING.ipmiconsole
1d1c79
%doc %{_datadir}/doc/%{name}/COPYING.ipmimonitoring
1d1c79
%doc %{_datadir}/doc/%{name}/COPYING.pstdout
1d1c79
%doc %{_datadir}/doc/%{name}/COPYING.ipmidetect
1d1c79
%doc %{_datadir}/doc/%{name}/COPYING.ipmi-fru
1d1c79
%doc %{_datadir}/doc/%{name}/COPYING.ipmi-dcmi
1d1c79
%doc %{_datadir}/doc/%{name}/COPYING.sunbmc
1d1c79
%doc %{_datadir}/doc/%{name}/COPYING.ZRESEARCH
1d1c79
%doc %{_datadir}/doc/%{name}/DISCLAIMER.ipmiping
1d1c79
%doc %{_datadir}/doc/%{name}/DISCLAIMER.ipmipower
1d1c79
%doc %{_datadir}/doc/%{name}/DISCLAIMER.ipmiconsole
1d1c79
%doc %{_datadir}/doc/%{name}/DISCLAIMER.ipmimonitoring
1d1c79
%doc %{_datadir}/doc/%{name}/DISCLAIMER.pstdout
1d1c79
%doc %{_datadir}/doc/%{name}/DISCLAIMER.ipmidetect
1d1c79
%doc %{_datadir}/doc/%{name}/DISCLAIMER.ipmi-fru
1d1c79
%doc %{_datadir}/doc/%{name}/DISCLAIMER.ipmi-dcmi
1d1c79
%doc %{_datadir}/doc/%{name}/DISCLAIMER.ipmiping.UC
1d1c79
%doc %{_datadir}/doc/%{name}/DISCLAIMER.ipmipower.UC
1d1c79
%doc %{_datadir}/doc/%{name}/DISCLAIMER.ipmiconsole.UC
1d1c79
%doc %{_datadir}/doc/%{name}/DISCLAIMER.ipmimonitoring.UC
1d1c79
%doc %{_datadir}/doc/%{name}/DISCLAIMER.pstdout.UC
1d1c79
%doc %{_datadir}/doc/%{name}/DISCLAIMER.ipmidetect.UC
1d1c79
%doc %{_datadir}/doc/%{name}/DISCLAIMER.ipmi-fru.UC
1d1c79
%doc %{_datadir}/doc/%{name}/freeipmi-coding.txt
1d1c79
%doc %{_datadir}/doc/%{name}/freeipmi-design.txt
1d1c79
%doc %{_datadir}/doc/%{name}/freeipmi-hostrange.txt
1d1c79
%doc %{_datadir}/doc/%{name}/freeipmi-libraries.txt
1d1c79
%doc %{_datadir}/doc/%{name}/freeipmi-bugs-issues-and-workarounds.txt
1d1c79
%doc %{_datadir}/doc/%{name}/freeipmi-testing.txt
1d1c79
%doc %{_datadir}/doc/%{name}/freeipmi-oem-documentation-requirements.txt
1d1c79
%dir %{_datadir}/doc/%{name}
1d1c79
%dir %{_datadir}/doc/%{name}/contrib
1d1c79
%dir %{_datadir}/doc/%{name}/contrib/ganglia
1d1c79
%doc %{_datadir}/doc/%{name}/contrib/ganglia/*
1d1c79
%dir %{_datadir}/doc/%{name}/contrib/nagios
1d1c79
%doc %{_datadir}/doc/%{name}/contrib/nagios/*
1d1c79
%dir %{_datadir}/doc/%{name}/contrib/pet
1d1c79
%doc %{_datadir}/doc/%{name}/contrib/pet/*
1d1c79
%{_libdir}/libipmiconsole*so.*
1d1c79
%{_libdir}/libfreeipmi*so.*
1d1c79
%{_libdir}/libipmidetect*so.*
1d1c79
%{_libdir}/libipmimonitoring.so.*
1d1c79
%{_localstatedir}/lib/*
1d1c79
%{_sbindir}/bmc-config
1d1c79
%{_sbindir}/bmc-info
1d1c79
%{_sbindir}/bmc-device
1d1c79
%{_sbindir}/ipmi-config
1d1c79
%{_sbindir}/ipmi-fru
1d1c79
%{_sbindir}/ipmi-locate
1d1c79
%{_sbindir}/ipmi-oem
1d1c79
%{_sbindir}/ipmi-pef-config
1d1c79
%{_sbindir}/pef-config
1d1c79
%{_sbindir}/ipmi-raw
1d1c79
%{_sbindir}/ipmi-sel
1d1c79
%{_sbindir}/ipmi-sensors
1d1c79
%{_sbindir}/ipmi-sensors-config
1d1c79
%{_sbindir}/ipmiping
1d1c79
%{_sbindir}/ipmi-ping
1d1c79
%{_sbindir}/ipmipower
1d1c79
%{_sbindir}/ipmi-power
1d1c79
%{_sbindir}/rmcpping
1d1c79
%{_sbindir}/rmcp-ping
1d1c79
%{_sbindir}/ipmiconsole
1d1c79
%{_sbindir}/ipmi-console
1d1c79
%{_sbindir}/ipmimonitoring
1d1c79
%{_sbindir}/ipmi-chassis
1d1c79
%{_sbindir}/ipmi-chassis-config
1d1c79
%{_sbindir}/ipmi-dcmi
1d1c79
%{_sbindir}/ipmi-pet
1d1c79
%{_sbindir}/ipmidetect
1d1c79
%{_sbindir}/ipmi-detect
1d1c79
%{_mandir}/man8/bmc-config.8*
1d1c79
%{_mandir}/man5/bmc-config.conf.5*
1d1c79
%{_mandir}/man8/bmc-info.8*
1d1c79
%{_mandir}/man8/bmc-device.8*
1d1c79
%{_mandir}/man8/ipmi-config.8*
1d1c79
%{_mandir}/man5/ipmi-config.conf.5*
1d1c79
%{_mandir}/man8/ipmi-fru.8*
1d1c79
%{_mandir}/man8/ipmi-locate.8*
1d1c79
%{_mandir}/man8/ipmi-oem.8*
1d1c79
%{_mandir}/man8/ipmi-pef-config.8*
1d1c79
%{_mandir}/man8/pef-config.8*
1d1c79
%{_mandir}/man8/ipmi-raw.8*
1d1c79
%{_mandir}/man8/ipmi-sel.8*
1d1c79
%{_mandir}/man8/ipmi-sensors.8*
1d1c79
%{_mandir}/man8/ipmi-sensors-config.8*
1d1c79
%{_mandir}/man8/ipmiping.8*
1d1c79
%{_mandir}/man8/ipmi-ping.8*
1d1c79
%{_mandir}/man8/ipmipower.8*
1d1c79
%{_mandir}/man8/ipmi-power.8*
1d1c79
%{_mandir}/man5/ipmipower.conf.5*
1d1c79
%{_mandir}/man8/rmcpping.8*
1d1c79
%{_mandir}/man8/rmcp-ping.8*
1d1c79
%{_mandir}/man8/ipmiconsole.8*
1d1c79
%{_mandir}/man8/ipmi-console.8*
1d1c79
%{_mandir}/man5/ipmiconsole.conf.5*
1d1c79
%{_mandir}/man8/ipmimonitoring.8*
1d1c79
%{_mandir}/man5/ipmi_monitoring_sensors.conf.5*
1d1c79
%{_mandir}/man5/ipmimonitoring_sensors.conf.5*
1d1c79
%{_mandir}/man5/ipmimonitoring.conf.5*
1d1c79
%{_mandir}/man5/freeipmi_interpret_sel.conf.5*
1d1c79
%{_mandir}/man5/freeipmi_interpret_sensor.conf.5*
1d1c79
%{_mandir}/man5/libipmimonitoring.conf.5*
1d1c79
%{_mandir}/man8/ipmi-chassis.8*
1d1c79
%{_mandir}/man8/ipmi-chassis-config.8*
1d1c79
%{_mandir}/man8/ipmi-dcmi.8*
1d1c79
%{_mandir}/man8/ipmi-pet.8*
1d1c79
%{_mandir}/man8/ipmidetect.8*
1d1c79
%{_mandir}/man8/ipmi-detect.8*
1d1c79
%{_mandir}/man5/freeipmi.conf.5*
1d1c79
%{_mandir}/man5/ipmidetect.conf.5*
1d1c79
%{_mandir}/man5/libipmiconsole.conf.5*
1d1c79
%{_mandir}/man7/freeipmi.7*
1d1c79
%dir %{_localstatedir}/cache/ipmimonitoringsdrcache
1d1c79
1d1c79
%files devel
1d1c79
%dir %{_datadir}/doc/%{name}/contrib/libipmimonitoring
1d1c79
%doc %{_datadir}/doc/%{name}/contrib/libipmimonitoring/*
1d1c79
%{_libdir}/libipmiconsole.so
1d1c79
%{_libdir}/libfreeipmi.so
1d1c79
%{_libdir}/libipmidetect.so
1d1c79
%{_libdir}/libipmimonitoring.so
1d1c79
%dir %{_includedir}/freeipmi
1d1c79
%dir %{_includedir}/freeipmi/api
1d1c79
%dir %{_includedir}/freeipmi/cmds
1d1c79
%dir %{_includedir}/freeipmi/debug
1d1c79
%dir %{_includedir}/freeipmi/driver
1d1c79
%dir %{_includedir}/freeipmi/fiid
1d1c79
%dir %{_includedir}/freeipmi/fru
1d1c79
%dir %{_includedir}/freeipmi/interface
1d1c79
%dir %{_includedir}/freeipmi/interpret
1d1c79
%dir %{_includedir}/freeipmi/locate
1d1c79
%dir %{_includedir}/freeipmi/payload
1d1c79
%dir %{_includedir}/freeipmi/record-format
1d1c79
%dir %{_includedir}/freeipmi/record-format/oem
1d1c79
%dir %{_includedir}/freeipmi/sdr
1d1c79
%dir %{_includedir}/freeipmi/sdr/oem
1d1c79
%dir %{_includedir}/freeipmi/sel
1d1c79
%dir %{_includedir}/freeipmi/sensor-read
1d1c79
%dir %{_includedir}/freeipmi/spec
1d1c79
%dir %{_includedir}/freeipmi/spec/oem
1d1c79
%dir %{_includedir}/freeipmi/templates
1d1c79
%dir %{_includedir}/freeipmi/templates/oem
1d1c79
%dir %{_includedir}/freeipmi/util
1d1c79
%{_includedir}/ipmiconsole.h
1d1c79
%{_includedir}/ipmidetect.h
1d1c79
%{_includedir}/ipmi_monitoring*.h
1d1c79
%{_includedir}/freeipmi/*.h
1d1c79
%{_includedir}/freeipmi/api/*.h
1d1c79
%{_includedir}/freeipmi/cmds/*.h
1d1c79
%{_includedir}/freeipmi/debug/*.h
1d1c79
%{_includedir}/freeipmi/driver/*.h
1d1c79
%{_includedir}/freeipmi/fiid/*.h
1d1c79
%{_includedir}/freeipmi/fru/*.h
1d1c79
%{_includedir}/freeipmi/interface/*.h
1d1c79
%{_includedir}/freeipmi/interpret/*.h
1d1c79
%{_includedir}/freeipmi/locate/*.h
1d1c79
%{_includedir}/freeipmi/payload/*.h
1d1c79
%{_includedir}/freeipmi/record-format/*.h
1d1c79
%{_includedir}/freeipmi/record-format/oem/*.h
1d1c79
%{_includedir}/freeipmi/sdr/*.h
1d1c79
%{_includedir}/freeipmi/sdr/oem/*.h
1d1c79
%{_includedir}/freeipmi/sel/*.h
1d1c79
%{_includedir}/freeipmi/sensor-read/*.h
1d1c79
%{_includedir}/freeipmi/spec/*.h
1d1c79
%{_includedir}/freeipmi/spec/oem/*.h
1d1c79
%{_includedir}/freeipmi/templates/*.h
1d1c79
%{_includedir}/freeipmi/templates/oem/*.h
1d1c79
%{_includedir}/freeipmi/util/*.h
1d1c79
%{_mandir}/man3/*
1d1c79
%{_libdir}/pkgconfig/*
1d1c79
1d1c79
%files bmc-watchdog
1d1c79
%doc %{_datadir}/doc/%{name}/COPYING.bmc-watchdog
1d1c79
%doc %{_datadir}/doc/%{name}/DISCLAIMER.bmc-watchdog
1d1c79
%doc %{_datadir}/doc/%{name}/DISCLAIMER.bmc-watchdog.UC
1d1c79
%config(noreplace) %{_sysconfdir}/sysconfig/bmc-watchdog
1d1c79
%{_sbindir}/bmc-watchdog
1d1c79
%{_mandir}/man8/bmc-watchdog.8*
1d1c79
%{_unitdir}/bmc-watchdog.service
1d1c79
1d1c79
%files ipmidetectd
1d1c79
%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/freeipmi/ipmidetectd.conf
1d1c79
%{_sbindir}/ipmidetectd
1d1c79
%{_mandir}/man5/ipmidetectd.conf.5*
1d1c79
%{_mandir}/man8/ipmidetectd.8*
1d1c79
%{_unitdir}/ipmidetectd.service
1d1c79
1d1c79
%files ipmiseld
1d1c79
%doc %{_datadir}/doc/%{name}/COPYING.ipmiseld
1d1c79
%doc %{_datadir}/doc/%{name}/DISCLAIMER.ipmiseld
1d1c79
%{_unitdir}/ipmiseld.service
1d1c79
%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/freeipmi/ipmiseld.conf
1d1c79
%{_sbindir}/ipmiseld
1d1c79
%{_mandir}/man5/ipmiseld.conf.5*
1d1c79
%{_mandir}/man8/ipmiseld.8*
1d1c79
%dir %{_localstatedir}/cache/ipmiseld
1d1c79
1d1c79
%changelog
406809
* Mon Jun 28 2021 Pavel Cahyna <pcahyna@redhat.com> - 1.6.8-1
406809
- New upstream release 1.6.8 (#1923042)
406809
1d1c79
* Wed Nov 18 2020 Josef Ridky <jridky@redhat.com> - 1.6.6-1
1d1c79
- New upstream release 1.6.6 (#1861627)
1d1c79
1d1c79
* Tue Apr 10 2018 Josef Ridky <jridky@redhat.com> - 1.6.1-1
1d1c79
- New upstream release 1.6.1 (#1541578)
1d1c79
1d1c79
* Thu Mar 08 2018 Josef Ridky <jridky@redhat.com> - 1.5.7-4
1d1c79
- Fix gcc dependency
1d1c79
1d1c79
* Wed Feb 21 2018 Josef Ridky <jridky@redhat.com> - 1.5.7-3
1d1c79
- Spec clean up (remove Group tag, add new macros and gcc dependency)
1d1c79
1d1c79
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.7-2
1d1c79
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
1d1c79
1d1c79
* Fri Aug 25 2017 Josef Ridky <jridky@redhat.com> - 1.5.7-1
1d1c79
- New upstream release 1.5.7 (#1482285)
1d1c79
1d1c79
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.6-3
1d1c79
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
1d1c79
1d1c79
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.6-2
1d1c79
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
1d1c79
1d1c79
* Mon Jul 10 2017 Josef Ridky <jridky@redhat.com> - 1.5.6-1
1d1c79
- New upstream release 1.5.6 (#1468062)
1d1c79
- Fix issue with capital letters in commands in manpage (#1468984)
1d1c79
1d1c79
* Mon Mar 27 2017 Josef Ridky <jridky@redhat.com> - 1.5.5-1
1d1c79
- New upstream release 1.5.5 (#1436115)
1d1c79
1d1c79
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.4-2
1d1c79
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
1d1c79
1d1c79
* Fri Oct 14 2016 Boris Ranto <branto@redhat.com> - 0:1.5.4-1
1d1c79
- New version (0:1.5.4-1)
1d1c79
1d1c79
* Tue May 24 2016 Boris Ranto <branto@redhat.com> - 0:1.5.2-1
1d1c79
- New version (0:1.5.2-1)
1d1c79
1d1c79
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.1-2
1d1c79
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
1d1c79
1d1c79
* Wed Dec 2 2015 Boris Ranto <branto@redhat.com> - 1.5.1-1
1d1c79
- Update to 1.5.1 (#1287346)
1d1c79
1d1c79
* Sat Oct 31 2015 Fedora Release Monitoring <release-monitoring@fedoraproject.org> - 1.4.11-1
1d1c79
- Update to 1.4.11 (#1227126)
1d1c79
1d1c79
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.8-3
1d1c79
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
1d1c79
1d1c79
* Wed Apr 22 2015 Ales Ledvinka <aledvink@redhat.com> - 1.4.8-2
1d1c79
- Remove modalias dependency.
1d1c79
1d1c79
* Mon Feb 23 2015 Christopher Meng <rpm@cicku.me> - 1.4.8-1
1d1c79
- Updated to freeipmi-1.4.8
1d1c79
 - Fix segfault in crypt code with libgcrypt versions >= 1.6.0.
1d1c79
 - Fix --fanout command line parse bug.
1d1c79
 - Fix typ - from FRU spec, language "Tegulu" is actually "Telugu".
1d1c79
 - Fix typ - in SEL session output, "Invalid Username of Password" to
1d1c79
  "Invalid Username or Password".
1d1c79
 - Loop on select() call if interrupted by EINTR in openipmi, ssif, and
1d1c79
  sunbmc inband drivers.
1d1c79
 - Fix integer overflow bug in ipmi-config when configure vlan ID > 255.
1d1c79
 - Add workaround for ipmi-config issue on Supermicr - X10DDW-i.
1d1c79
 - Fix error handling bug in bmc-info.
1d1c79
1d1c79
* Tue Nov 04 2014 Ales Ledvinka <aledvink@redhat.com> - 1.4.6-1
1d1c79
- Updated to upstream freeipmi-1.4.6
1d1c79
 - In ipmi-fru, support output of DDR4 SDRAM modules.
1d1c79
 - Fix EFI probing on non IA64 systems.
1d1c79
 - Fix corner case in ipmi-raw w/ standard input or --file and empty lines.
1d1c79
 - Fix parsing corner case in ipmi-chassis.
1d1c79
 - Support SSIF bridging.
1d1c79
 - Fix libipmiconsole calculation bug w/ SOL character send size.
1d1c79
 - Support Supermicro H8DGU and H8DG6 OEM sensors and events.
1d1c79
 - Minor documentation updates.
1d1c79
1d1c79
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.4-2
1d1c79
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
1d1c79
1d1c79
* Thu Jul 03 2014 Ales Ledvinka <aledvink@redhat.com> - 1.4.4-1
1d1c79
- Updated to upstream freeipmi-1.4.4
1d1c79
 - Support retrys of SSIF reads to handle SSIF NACKs.
1d1c79
1d1c79
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.3-2
1d1c79
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
1d1c79
1d1c79
* Fri May 16 2014 Ales Ledvinka <aledvink@redhat.com> - 1.4.3-1
1d1c79
- Updated to upstream freeipmi-1.4.3
1d1c79
 - In ipmi-oem, support Supermicro get-power-supply-status and
1d1c79
   get-pmbus-power-supply-status commands.
1d1c79
 - Support 'ipmiping' workaround in ipmipower.
1d1c79
 - Minor documentation updates.
1d1c79
1d1c79
* Tue Mar 04 2014 Ales Ledvinka <aledvink@redhat.com> - 1.4.1-1
1d1c79
- Updated to upstream freeipmi-1.4.1
1d1c79
 - Support new tool ipmi-config.  Ipmi-config is a consolidated
1d1c79
   configuration tool implementing everything that was previously in
1d1c79
   bmc-config, ipmi-pef-config, ipmi-sensors-config, and
1d1c79
   ipmi-chassis-config.
1d1c79
   - The consolidated tool will allow users to checkout, commit, and
1d1c79
     diff sections/fields across the four former tools using only one
1d1c79
     tool.
1d1c79
   - The consolidated tool will also allow users to checkout, commit,
1d1c79
     and diff new sections/fields not yet covered in the four former
1d1c79
     tools.
1d1c79
   - Legacy scripts for bmc-config, ipmi-pef-config,
1d1c79
     ipmi-sensors-config, and ipmi-chassis-config will point to the new
1d1c79
     tool with all appropriate options to ensure full backwards
1d1c79
     compatability.
1d1c79
   - The ipmi-pef-config --info option has been made legacy.  It is
1d1c79
     still supported but no longer advertised.
1d1c79
 - Support Intel Data Center Host Interface / Management Engine as
1d1c79
   optional driver type for in-band communication.
1d1c79
   - Typically these are loaded as /dev/dcmi and /dev/mei drivers.
1d1c79
   - This driver is identified as the "inteldcmi" type, as it is
1d1c79
     specific to Intel systems.
1d1c79
 - Support OEM extensions for Intel Windmill, Wiwynn Windmill, and
1d1c79
   Quanta Winterfell motherboards in ipmi-sel and ipmi-sensors.  These
1d1c79
   motherboards are also know as motherboards for the Open Compute
1d1c79
   Project (OCP).
1d1c79
 - Support DCMI configuration in ipmi-config.
1d1c79
 - Update FreeIPMI for changes in IPMI 2.0 Errata 5.  Include are:
1d1c79
   - New sensor events for Power Supply and OS Boot sensors.  New
1d1c79
     events are supported in all areas, ipmi-sensors, ipmi-sel,
1d1c79
     libipmimonitoring, etc.
1d1c79
   - PEF now supports 255 filter numbers, not 127.  This is supported
1d1c79
     in ipmi-config (formerly ipmi-pef-config).
1d1c79
   - Support get/set of new System Info Parameters Present OS Version,
1d1c79
     BMC URL, and Base OS/Hypervisor URL.  This is supported in
1d1c79
     bmc-info and bmc-device.
1d1c79
 - Update ipmi-oem Intel Node Manager OEM commands for changes listed
1d1c79
   in Intelligent Power Node Manager 2.0 specification.
1d1c79
   - Due to changes in the specification, minor text changes may exist
1d1c79
     in some output from intelnm OEM commands.
1d1c79
 - Update ipmi-sel to support new SEL events in Intelligent Power Node
1d1c79
   Manager 2.0 specification.
1d1c79
 - Support 'serialalertsdeferred' workaround in ipmiconsole.
1d1c79
 - Support 'solpacketseq' workaround in ipmiconsole.
1d1c79
 - Fix portability issues for Apple / OS X.
1d1c79
 - Fix bmc-info output of GUID, format was output with two bytes out of
1d1c79
   order.
1d1c79
   - May affect scripts parsing and using the GUID.
1d1c79
 - Bmc-info now supports --get-system-guid and outputs the System GUID
1d1c79
   as well as the Device GUID by default.
1d1c79
   - The Device GUID is not prefixed with the text "Device GUID"
1d1c79
     instead of just "GUID".  Any scripts scripting against this will
1d1c79
     need to be adjusted.
1d1c79
 - Bmc-info now supports a workaround of 'guidformat' to read the GUID
1d1c79
   with a format a number of vendors have incorrectly used.
1d1c79
 - In ipmi-config's sensor configuration, decimal values that cannot be
1d1c79
   encoded accurately now report a clearer error message.
1d1c79
1d1c79
* Tue Jan 14 2014 Ales Ledvinka <aledvink@redhat.com> - 1.3.4-2
1d1c79
- Module alias dependencies.
1d1c79
- Changes for previous 1.3.4 update:
1d1c79
 - Support 'solchannelsupport' workraound in ipmiconsole /
1d1c79
   IPMICONSOLE_WORKAROUND_SKIP_CHANNEL_PAYLOAD_SUPPORT workaround flag in
1d1c79
   libipmiconsole.
1d1c79
 - Fix SDR cache workaround for motherboards with invalid SDR record
1d1c79
   counts listed.
1d1c79
 - Workaround Supermicro bug in bmc-watchdog. 
1d1c79
 - Fix error checks in sensor decoding functions, leading to possible
1d1c79
   problems in ipmi-sensors-config.
1d1c79
 - Update documentation with additional workarounds for motherboards.
1d1c79
1d1c79
* Tue Dec 17 2013 Christopher Meng <rpm@cicku.me> - 1.3.4-1
1d1c79
- Updated to freeipmi-1.3.4
1d1c79
1d1c79
* Fri Nov  8 2013 Ales Ledvinka <aledvink@redhat.com> - 1.3.3-1
1d1c79
- Updated to freeipmi-1.3.3
1d1c79
 - Add support for intelnm get-node-manager-alert-destination and
1d1c79
   set-node-manager-alert-destination in ipmi-oem.
1d1c79
 - Under very verbose mode, ipmi-sel will now record types for OEM
1d1c79
   records.  This should allow OEM parses outside of FreeIPMI to more
1d1c79
   effectively parse OEM specific SEL records.
1d1c79
 - Fix big endian portability bugs.
1d1c79
1d1c79
* Mon Sep 23 2013 Ales Ledvinka <aledvink@redhat.com> - 1.3.2-1
1d1c79
- Updated to freeipmi-1.3.2
1d1c79
 - Update FreeIPMI tools to check libfreeipmi API error codes
1d1c79
   correctly.
1d1c79
 - Update ipmi-api.h to list mappings of IPMI completion codes and
1d1c79
   RMCPPlus codes to API Error codes.
1d1c79
1d1c79
* Mon Sep  2 2013 Ales Ledvinka <aledvink@redhat.com> - 1.3.1-1
1d1c79
- Updated to freeipmi-1.3.1
1d1c79
 - Timestamp UTC/localtime reporting compliant with specification.
1d1c79
   Remote timestamp expected to be in localtime already.
1d1c79
 - Timestamp reporting options --utc-to-localtime,
1d1c79
   --localtime-to-utc and --utc-offset.
1d1c79
 - In ipmi-fru, support output of DDR3 SDRAM modules.
1d1c79
 - In ipmi-fru, support output of new FRU multirecords, most notably
1d1c79
   extended DC output and extended DC load (per FRU Revision 1.2).
1d1c79
 - Support additional chassis types (per FRU Revision 1.2 update).
1d1c79
 - and more
1d1c79
1d1c79
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.9-3
1d1c79
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
1d1c79
1d1c79
* Sun Jul 21 2013 Ales Ledvinka <aledvink@redhat.com> - 1.2.9-2
1d1c79
- Requires modalias package for module loading dependency.
1d1c79
1d1c79
* Fri Jul 19 2013 Ales Ledvinka <aledvink@redhat.com> - 1.2.9-1
1d1c79
- Updated to upstream freeipmi-1.2.9
1d1c79
 - Fix threshold output corner case in ipmi-sensors.
1d1c79
 - Fix invalid declaration in libipmimonitoring header.
1d1c79
 - Fix older compiler build problems.
1d1c79
 -
1d1c79
 - Fix portability build bug on ARM systems.
1d1c79
 - Add 'internal IPMI error' troubleshooting to manpages.
1d1c79
 - Fix bmc-info corner case on Bull 510 systems.
1d1c79
1d1c79
* Fri May 31 2013 Ales Ledvinka <aledvink@redhat.com> - 1.2.7-2
1d1c79
- Fix build on architectures where va_list is not pointer.
1d1c79
1d1c79
* Mon May 20 2013 Ales Ledvinka <aledvink@redhat.com> - 1.2.7-1
1d1c79
- Updated to freeipmi-1.2.7
1d1c79
 - Fix sensor output errors with OEM sensors.
1d1c79
1d1c79
* Fri May 17 2013 Ales Ledvinka <aledvink@redhat.com> - 1.2.6-2
1d1c79
- spec update by Christopher Meng <rpm@cicku.me>
1d1c79
- hardened build flags should include PIE also for bmc-watchdog.
1d1c79
1d1c79
* Fri May 03 2013 Ales Ledvinka <aledvink@redhat.com> - 1.2.6-1
1d1c79
- Updated to freeipmi-1.2.6
1d1c79
 - Support HP Proliant DL160 G8 OEM sensors.
1d1c79
 - Support Supermicro X9SCM-iiF OEM sensors and events.
1d1c79
 - Support output of temperature sampling period to ipmi-dcmi.
1d1c79
 - Clarify error message when SOL session cannot be stolen in
1d1c79
   ipmiconsole/libipmiconsole.
1d1c79
 - Fix dcmi rolling average time period output error
1d1c79
 - Fix ipmi-dcmi output errors with --get-dcmi-sensor-info.
1d1c79
 - Fix corner case in calculation of confidentiality pad length with
1d1c79
   AES-CBC-128 encryption.  Incorrect pad effects some vendor firmware
1d1c79
   implementations.
1d1c79
 - Send IPMI 2.0 packets differently than IPMI 1.5 packets, as the
1d1c79
   former does not require legacy pad data to be appended to payloads.
1d1c79
 - Fix Intel OEM SEL buffer overflow.
1d1c79
 - Fix out of trunk source build.
1d1c79
 - Support new ipmi_rmcpplus_sendto() and ipmi_rmcpplus_recvfrom()
1d1c79
   functions.
1d1c79
 - Support new HP Proliant DL160 G8 OEM sensor events.
1d1c79
1d1c79
* Thu Feb 28 2013 Ales Ledvinka <aledvink@redhat.com> - 1.2.5-1
1d1c79
- Updated to freeipmi-1.2.5:
1d1c79
 - Support Supermicro X9SPU-F-O OEM sensors and events.
1d1c79
 - Support Supermicro X9DRI-LN4F+ OEM intepretations (previously
1d1c79
   forgotten).
1d1c79
1d1c79
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.4-2
1d1c79
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
1d1c79
1d1c79
* Fri Jan 11 2013 Ales Ledvinka <aledvink@redhat.com> - 1.2.4-1
1d1c79
- Updated to freeipmi-1.2.4:
1d1c79
 - Support Supermicro X9DRI-LN4F+ OEM sensors and events.
1d1c79
 - Fix output corner case for "session-based" channels.
1d1c79
 - Fix ipmi-oem set-power-restore-delay corner case in time settings.
1d1c79
 - Fix ipmiseld memleak.
1d1c79
 - Fix libfreeipmi potential fd leak when generating random numbers.
1d1c79
 - Fix libfreeipmi error output bug in RMCP interface.
1d1c79
 - Fix several minor corner cases discovered by static code analysis.
1d1c79
1d1c79
* Thu Nov 15 2012 Ales Ledvinka <aledvink@redhat.com> - 1.2.3-1
1d1c79
- Updated to freeipmi-1.2.3:
1d1c79
 - In ipmi-oem, support new Dell Poweredge R720 OEM commands extensions,
1d1c79
   including:
1d1c79
  - get-nic-selection-failover
1d1c79
  - set-nic-selection-failover
1d1c79
  - power-monitoring-over-interval
1d1c79
  - power-monitoring-interval-range
1d1c79
  - get-last-post-code
1d1c79
 - In ipmi-oem, update active-lom-status for Dell Poweredge R720.
1d1c79
 - In ipmi-oem, support new Dell Poweredge R720 get-system-info option
1d1c79
   'cmc-info'.
1d1c79
 - In ipmi-oem, Dell get-system-info "slot-number" key changed to
1d1c79
   "blade-slot-info".  Legacy option still supported.
1d1c79
 - In ipmi-sel, support Dell Poweredge R720 OEM SEL extensions.
1d1c79
 - In all tools, support nochecksumcheck workaround option.
1d1c79
 - In all daemons (ipmiseld, ipmidetectd, bmc-watchdog), check for
1d1c79
   syscall errors during daemon setup.
1d1c79
1d1c79
 - In libfreeipmi, support Dell R720 OEM extension intepretations.
1d1c79
 - In libfreeipmi, libipmimonitoring, and libipmiconsole, support
1d1c79
   NO_CHECKSUM_CHECK workaround flag.
1d1c79
 - In libipmiconsole, IPMICONSOLE_DEBUG_FILE logs debug to files in
1d1c79
   current working directory and not /var/log.  PID is also appended to
1d1c79
   debug files.
1d1c79
1d1c79
* Fri Oct 12 2012 Ales Ledvinka <aledvink@redhat.com> - 1.2.2-1
1d1c79
- Updated to freeipmi-1.2.2:
1d1c79
 - Support new --sol-payload-instance and --deactivate-all-instances
1d1c79
   options in ipmiconsole.
1d1c79
 - Fix ipmiseld compile issue with -Werror=format-security.
1d1c79
1d1c79
* Mon Aug 27 2012 Jan Safranek <jsafrane@redhat.com> - 1.2.1-1
1d1c79
- Reworked RPM scriptlets to use systemd-rpm macros (#850117).
1d1c79
- Updated to freeipmi-1.2.1:
1d1c79
 - Support new ipmiseld daemon, a daemon that regularly polls the SEL
1d1c79
   and stores the events to the local syslog.
1d1c79
 - In ipmipower, support --oem-power-type option to support OEM
1d1c79
   specific power control operations.  Included in this support were
1d1c79
   the follow changes to ipmipower:
1d1c79
   - Support initial OEM power type of C410X.
1d1c79
   - Re-architect to allow input of extra information for an OEM power
1d1c79
     operation via the '+' operator after the hostname.
1d1c79
   - Re-architect to allow input of target hostname multiple times
1d1c79
     under OEM power cases.
1d1c79
   - Re-architect to allow serialization of power control operations to
1d1c79
     the same host.
1d1c79
 - Globally in tools, support --target-channel-number and
1d1c79
   --target-slave-address to specify specific targets.
1d1c79
 - Globally in tools, support ability to specify alternate port via
1d1c79
   optional [:port] in hostname or host config.
1d1c79
 - In ipmi-fru, support --bridge-fru option to allow reading FRU entries
1d1c79
   from satellite controllers.
1d1c79
 - In bmc-config, add configuration support for
1d1c79
   Maximum_Privilege_Cipher_Suite_Id_15 under RMCPplus_Conf_Privilege.
1d1c79
 - Globally support Cipher Suite ID 15 and 16 based on comments from
1d1c79
   Intel.
1d1c79
 - In ipmi-sensors, support --output-sensor-thresholds, to allow
1d1c79
   outputting of sensor thresholds in default output for scripting.
1d1c79
 - In ipmi-sel, support new --post-clear option.
1d1c79
 - In bmc-device, support new --set-sensor-reading-and-event-status
1d1c79
   option.
1d1c79
 - In ipmi-oem, support additional Intel Node Manager commands,
1d1c79
   including:
1d1c79
   - get-node-manager-capabilities
1d1c79
   - node-manager-policy-control 
1d1c79
   - get-node-manager-policy
1d1c79
   - set-node-manager-policy
1d1c79
   - remove-node-manager-policy
1d1c79
   - get-node-manager-alert-thresholds
1d1c79
   - set-node-manager-alert-thresholds
1d1c79
   - get-node-manager-policy-suspend-periods
1d1c79
   - set-node-manager-policy-suspend-periods
1d1c79
   - set-node-manager-power-draw-range
1d1c79
 - In ipmi-oem, support Wistron OEM commands extensions.
1d1c79
 - In ipmi-sel, support Wistron OEM SEL interpretations.
1d1c79
 - In ipmi-fru, support Wistron OEM FRU records.
1d1c79
 - In ipmi-pef-config, support configuration volatile Alert String 0
1d1c79
   and Lan Alert Destination 0.
1d1c79
1d1c79
* Tue Jul 31 2012 Jan Safranek <jsafrane@redhat.com> - 1.1.7-1
1d1c79
- Updated to freeipmi-1.1.7
1d1c79
1d1c79
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.6-4
1d1c79
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
1d1c79
1d1c79
* Tue Jul 17 2012 Jan Safranek <jsafrane@redhat.com> - 1.1.6-3
1d1c79
- fixed License to GPLv3+
1d1c79
1d1c79
* Tue Jul 17 2012 Jan Safranek <jsafrane@redhat.com> - 1.1.6-2
1d1c79
- fixed upstream URL
1d1c79
1d1c79
* Fri Jun 29 2012 Jan Safranek <jsafrane@redhat.com> - 1.1.6-1
1d1c79
- Updated to freeipmi-1.1.6
1d1c79
1d1c79
* Fri May 18 2012 Jan Safranek <jsafrane@redhat.com> - 1.1.5-1
1d1c79
- Updated to freeipmi-1.1.5
1d1c79
1d1c79
* Fri Apr 20 2012 Jan Safranek <jsafrane@redhat.com> - 1.1.4-1
1d1c79
- Updated to freeipmi-1.1.4
1d1c79
1d1c79
* Wed Mar  7 2012 Jan Safranek <jsafrane@redhat.com> - 1.1.3-1
1d1c79
- Updated to freeipmi-1.1.3
1d1c79
1d1c79
* Wed Feb  8 2012 Jan Safranek <jsafrane@redhat.com> - 1.1.2-1
1d1c79
- Updated to freeipmi-1.1.2
1d1c79
1d1c79
* Fri Jan  6 2012 Jan Safranek <jsafrane@redhat.com> - 1.1.1-2
1d1c79
- added systemd unit files (#767611)
1d1c79
1d1c79
* Wed Jan  4 2012 Jan Safranek <jsafrane@redhat.com> - 1.1.1-1
1d1c79
- Updated to freeipmi-1.1.1
1d1c79
1d1c79
* Wed Dec 14 2011 Jan Safranek <jsafrane@redhat.com> - 1.0.10-1
1d1c79
- Updated to freeipmi-1.0.10
1d1c79
1d1c79
* Tue Nov 22 2011 Jan Safranek <jsafrane@redhat.com> - 1.0.9-1
1d1c79
- Updated to freeipmi-1.0.9
1d1c79
1d1c79
* Thu Oct 27 2011 Jan Safranek <jsafrane@redhat.com> - 1.0.8-1
1d1c79
- enable build on all archs, the iopl issue #368541 is fixed
1d1c79
- Updated to freeipmi-1.0.8
1d1c79
1d1c79
* Thu Sep 29 2011 Jan Safranek <jsafrane@redhat.com> - 1.0.7-1
1d1c79
- Updated to freeipmi-1.0.7
1d1c79
1d1c79
* Mon Sep  5 2011 Jan Safranek <jsafrane@redhat.com> - 1.0.6-1
1d1c79
- Updated to freeipmi-1.0.6
1d1c79
1d1c79
* Fri Jul  1 2011 Jan Safranek <jsafrane@redhat.com> - 1.0.5-1
1d1c79
- Updated to freeipmi-1.0.5
1d1c79
1d1c79
* Fri Apr 22 2011 Jan Safranek <jsafrane@redhat.com> - 1.0.4-1
1d1c79
- Updated to freeipmi-1.0.4
1d1c79
1d1c79
* Wed Mar 30 2011 Jan Safranek <jsafrane@redhat.com> - 1.0.3-1
1d1c79
- Updated to freeipmi-1.0.3, see announce at
1d1c79
  http://lists.gnu.org/archive/html/freeipmi-users/2011-03/msg00017.html
1d1c79
1d1c79
* Wed Feb 23 2011 Jan Safranek <jsafrane@redhat.com> - 1.0.2-1
1d1c79
- Updated to freeipmi-1.0.2, see announce at
1d1c79
  http://lists.gnu.org/archive/html/freeipmi-users/2011-02/msg00027.html
1d1c79
1d1c79
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1-2
1d1c79
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
1d1c79
1d1c79
* Fri Jan 21 2011 Jan Safranek <jsafrane@redhat.com> - 1.0.1:1
1d1c79
- Updated to freeipmi-1.0.1, see announce at
1d1c79
  http://lists.gnu.org/archive/html/freeipmi-users/2011-01/msg00006.html
1d1c79
- Configuration files moved from /etc/ to /etc/freeipmi/. Support legacy config
1d1c79
  files for backwards compatibility.
1d1c79
- More detailed release information can be found in the NEWS file.
1d1c79