forked from pool/mcelog
109 lines
2.9 KiB
RPMSpec
109 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package mcelog (Version 1.0pre3.6363f5b719e9)
|
|
#
|
|
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
# norootforbuild
|
|
|
|
|
|
Name: mcelog
|
|
License: GPLv2+
|
|
Summary: Log Machine Check Events
|
|
Version: 1.0pre3.6363f5b719e9
|
|
Release: 1
|
|
AutoReqProv: on
|
|
ExclusiveArch: x86_64
|
|
BuildRequires: libesmtp-devel
|
|
Requires: logrotate
|
|
PreReq: %insserv_prereq %fillup_prereq
|
|
Source: mcelog-%{version}.tar.bz2
|
|
Source1: mcelog.service
|
|
Source2: mcelog.sysconfig
|
|
Source6: README.email_setup
|
|
Patch1: email.patch
|
|
Group: System/Monitoring
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
mcelog retrieves machine check events from an x86-64 kernel in a cron
|
|
job, decodes them, and logs them to /var/log/mcelog.
|
|
|
|
A machine check event is a hardware error detected by the CPU.
|
|
|
|
It should run on any x86-64 system.
|
|
|
|
In addition, it allows decoding machine check kernel panic messages.
|
|
|
|
|
|
|
|
Authors:
|
|
--------
|
|
Andi Kleen <andi@firstfloor.org>
|
|
|
|
%prep
|
|
%setup
|
|
%patch1 -p1
|
|
|
|
%build
|
|
export SUSE_ASNEEDED=0
|
|
make CFLAGS="$RPM_OPT_FLAGS"
|
|
|
|
%install
|
|
export prefix=$RPM_BUILD_ROOT/usr
|
|
export etcprefix=$RPM_BUILD_ROOT
|
|
make -e install
|
|
mkdir -p $RPM_BUILD_ROOT/etc/logrotate.d/
|
|
mkdir -p $RPM_BUILD_ROOT/etc/init.d
|
|
install -m755 %SOURCE1 $RPM_BUILD_ROOT/etc/init.d/mcelog
|
|
ln -s /etc/init.d/mcelog $RPM_BUILD_ROOT/usr/sbin/rcmcelog
|
|
install -m644 mcelog.logrotate $RPM_BUILD_ROOT/etc/logrotate.d/mcelog
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/var/adm/fillup-templates
|
|
install -m 644 %SOURCE2 $RPM_BUILD_ROOT/var/adm/fillup-templates/sysconfig.mcelog
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%_docdir/%name
|
|
install -m 644 %SOURCE6 $RPM_BUILD_ROOT/%_docdir/%name/README.email_setup
|
|
install -m 644 lk10-mcelog.pdf $RPM_BUILD_ROOT/%_docdir/%name/lk10-mcelog.pdf
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%post
|
|
if [ -c /dev/mcelog ];then
|
|
%{fillup_and_insserv -y mcelog}
|
|
fi
|
|
|
|
%preun
|
|
%{stop_on_removal mcelog}
|
|
|
|
%postun
|
|
%{restart_on_update mcelog}
|
|
%insserv_cleanup
|
|
|
|
%files
|
|
%defattr (-,root,root,755)
|
|
%{_mandir}/man8/*
|
|
/usr/sbin/mcelog
|
|
%config /etc/logrotate.d/mcelog
|
|
/etc/init.d/mcelog
|
|
%dir /etc/mcelog
|
|
%config /etc/mcelog/mcelog.conf
|
|
/var/adm/fillup-templates/sysconfig.mcelog
|
|
/etc/mcelog/*trigger
|
|
/usr/sbin/rcmcelog
|
|
%_docdir/%name
|
|
|
|
%changelog
|