Blame SPECS/freeipmi.spec

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