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