Blame SPECS/watchdog.spec

8486e6
Summary:          Software and/or Hardware watchdog daemon
8486e6
Name:             watchdog
8486e6
Version:          5.15
6384fd
Release:          2%{?dist}
8486e6
License:          GPLv2+
8486e6
8486e6
URL:              http://sourceforge.net/projects/watchdog/
8486e6
Source0:          http://downloads.sourceforge.net/watchdog/watchdog-%{version}.tar.gz
8486e6
Source1:          watchdog.init
8486e6
Source2:          README.watchdog.ipmi
8486e6
Source3:          README.Fedora
8486e6
Source4:          watchdog.service
8486e6
Source5:          watchdog-ping.service
8486e6
8486e6
Patch3:           0003-watchdog-5.13-rhsel.patch
8486e6
Patch4:           0004-watchdog-5.13-rhseldoc.patch
8486e6
8486e6
BuildRequires:    libtirpc-devel
8486e6
BuildRequires:    systemd-units
8486e6
8486e6
Requires(post): systemd
8486e6
Requires(preun): systemd
8486e6
Requires(postun): systemd
8486e6
8486e6
8486e6
%description
8486e6
The watchdog program can be used as a powerful software watchdog daemon 
8486e6
or may be alternately used with a hardware watchdog device such as the 
8486e6
IPMI hardware watchdog driver interface to a resident Baseboard 
8486e6
Management Controller (BMC).  watchdog periodically writes to /dev/watchdog; 
8486e6
the interval between writes to /dev/watchdog is configurable through settings 
8486e6
in the watchdog sysconfig file.  This configuration file is also used to 
8486e6
set the watchdog to be used as a hardware watchdog instead of its default 
8486e6
software watchdog operation.  In either case, if the device is open but not 
8486e6
written to within the configured time period, the watchdog timer expiration 
8486e6
will trigger a machine reboot. When operating as a software watchdog, the 
8486e6
ability to reboot will depend on the state of the machine and interrupts.  
8486e6
When operating as a hardware watchdog, the machine will experience a hard 
8486e6
reset (or whatever action was configured to be taken upon watchdog timer 
8486e6
expiration) initiated by the BMC.
8486e6
8486e6
 
8486e6
%prep
8486e6
%setup -q -n %{name}-%{version}
8486e6
%patch3 -p1 -b .rhsel
8486e6
%patch4 -p1 -b .rhseldoc
8486e6
8486e6
cp %{SOURCE2} .
8486e6
cp %{SOURCE3} .
8486e6
%if 0%{?rhel}
8486e6
mv README.Fedora README.RHEL
8486e6
%endif
8486e6
8486e6
mv README README.orig
8486e6
iconv -f ISO-8859-1 -t UTF-8 < README.orig > README
8486e6
8486e6
8486e6
%build
8486e6
%configure \
8486e6
    CFLAGS="%{__global_cflags} -I/usr/include/tirpc" \
8486e6
    LDFLAGS="%{__global_ldflags} -ltirpc"
8486e6
make %{?_smp_mflags}
8486e6
8486e6
8486e6
%install
8486e6
install -d -m0755 ${RPM_BUILD_ROOT}%{_sysconfdir}
8486e6
install -d -m0755 ${RPM_BUILD_ROOT}%{_sysconfdir}/watchdog.d
8486e6
make DESTDIR=${RPM_BUILD_ROOT} install
8486e6
install -Dp -m0644 %{name}.sysconfig ${RPM_BUILD_ROOT}%{_sysconfdir}/sysconfig/watchdog
8486e6
install -Dp -m0644 %{SOURCE4} ${RPM_BUILD_ROOT}%{_unitdir}/watchdog.service
8486e6
install -Dp -m0644 %{SOURCE5} ${RPM_BUILD_ROOT}%{_unitdir}/watchdog-ping.service
8486e6
install -Dd -m0755 ${RPM_BUILD_ROOT}%{_libexecdir}/watchdog/scripts
8486e6
8486e6
8486e6
%post
8486e6
%systemd_post watchdog.service
8486e6
8486e6
%preun 
8486e6
%systemd_preun watchdog.service
8486e6
%systemd_preun watchdog.ping.service
8486e6
8486e6
%postun 
8486e6
%systemd_postun_with_restart watchdog.service
8486e6
%systemd_postun_with_restart watchdog.ping.service
8486e6
8486e6
%triggerun -- watchdog < 5.9-4
8486e6
# Save the current service runlevel info
8486e6
# User must manually run systemd-sysv-convert --apply watchdog
8486e6
# to migrate them to systemd targets
8486e6
/usr/bin/systemd-sysv-convert --save watchdog >/dev/null 2>&1 ||:
8486e6
8486e6
# Run these because the SysV package being removed won't do them
8486e6
/sbin/chkconfig --del watchdog >/dev/null 2>&1 || :
8486e6
/bin/systemctl try-restart watchdog.service >/dev/null 2>&1 || :
8486e6
/bin/systemctl try-restart watchdog-ping.service >/dev/null 2>&1 || :
8486e6
8486e6
8486e6
%files
8486e6
%doc AUTHORS ChangeLog COPYING examples/ IAFA-PACKAGE NEWS README TODO README.watchdog.ipmi
8486e6
%if 0%{?rhel}
8486e6
%doc README.RHEL
8486e6
%else
8486e6
%doc README.Fedora
8486e6
%endif
8486e6
%config(noreplace) %{_sysconfdir}/watchdog.conf
8486e6
%config(noreplace) %{_sysconfdir}/sysconfig/watchdog
8486e6
%{_sysconfdir}/watchdog.d
8486e6
%{_sbindir}/watchdog
8486e6
%{_sbindir}/wd_identify
8486e6
%{_sbindir}/wd_keepalive
8486e6
%{_mandir}/man5/watchdog.conf.5*
8486e6
%{_mandir}/man8/watchdog.8*
8486e6
%{_mandir}/man8/wd_identify.8*
8486e6
%{_mandir}/man8/wd_keepalive.8*
8486e6
%{_unitdir}/watchdog.service
8486e6
%{_unitdir}/watchdog-ping.service
8486e6
%{_libexecdir}/watchdog/scripts
8486e6
8486e6
8486e6
%changelog
6384fd
* Wed Apr 21 2021 Than Ngo <than@redhat.com> - 5.15-2
6384fd
- Resolves: #1846110 - remove deprecated stanza in unit files
6384fd
8486e6
* Tue Feb 13 2018 Richard W.M. Jones <rjones@redhat.com> - 5.15-1
8486e6
- Rebase to watchdog 5.15.
8486e6
- Remove upstream patches.
8486e6
- Modify code to use libtirpc.
8486e6
8486e6
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.13-19
8486e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
8486e6
8486e6
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.13-18
8486e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
8486e6
8486e6
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.13-17
8486e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
8486e6
8486e6
* Mon Mar 06 2017 Josef Ridky <jridky@redhat.com> - 5.13-16
8486e6
- Scriptlets replaced with new systemd macros (#850364)
8486e6
8486e6
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.13-15
8486e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
8486e6
8486e6
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.13-14
8486e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
8486e6
8486e6
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.13-13
8486e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
8486e6
8486e6
* Thu Aug 21 2014 Kevin Fenzi <kevin@scrye.com> - 5.13-12
8486e6
- Rebuild for rpm bug 1131960
8486e6
8486e6
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.13-11
8486e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
8486e6
8486e6
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.13-10
8486e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
8486e6
8486e6
* Thu Nov  7 2013 Ales Ledvinka <aledvink@redhat.com> - 5.13-9
8486e6
- SELinux: Add /usr/libexec/watchdog/scripts/ for test-bin and repair-bin to inherit from.
8486e6
- systemd: service with network available dependency
8486e6
- systemd: correct cgroup for realtime settings
8486e6
- Document SELinux and systemd.
8486e6
8486e6
* Thu Oct 24 2013 Ales Ledvinka <aledvink@redhat.com> - 5.13-5
8486e6
- SELinux: do not reopen descriptors for reading when only appending.
8486e6
8486e6
* Fri Aug  9 2013 Richard W.M. Jones <rjones@redhat.com> - 5.13-4
8486e6
- Fix License field (software is GPLv2+, not "GPL+").
8486e6
8486e6
* Thu Aug  8 2013 Richard W.M. Jones <rjones@redhat.com> - 5.13-3
8486e6
- Rename README.Fedora to README.RHEL on RHEL.
8486e6
8486e6
* Tue Jul 30 2013 Richard W.M. Jones <rjones@redhat.com> - 5.13-2
8486e6
- Enable /etc/watchdog.d directory for storing test binaries
8486e6
  (RHBZ#657750, RHBZ#831190).
8486e6
- Missing BR systemd-units.
8486e6
- Update .gitignore.
8486e6
- Drop Group line, not required by modern RPM.
8486e6
8486e6
* Thu May 16 2013 Richard W.M. Jones <rjones@redhat.com> - 5.13-1
8486e6
- New upstream version 5.13.
8486e6
- Various documentation fixes (RHBZ#948883).
8486e6
8486e6
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.12-3
8486e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
8486e6
8486e6
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.12-2
8486e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
8486e6
8486e6
* Fri Jul 06 2012 Richard W.M. Jones <rjones@redhat.com> - 5.12-1
8486e6
- New upstream version 5.12 (RHBZ#837949).
8486e6
- Bring specfile up to modern standards.
8486e6
- Remove commented sections from previous commit.
8486e6
- Remove both patches (equivalent changes now upstream).
8486e6
8486e6
* Wed Mar 14 2012 Jon Ciesla <limburgher@gmail.com> - 5.9-4
8486e6
- Migrate to systemd, BZ 661220.
8486e6
8486e6
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.9-3
8486e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
8486e6
8486e6
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.9-2
8486e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8486e6
8486e6
* Mon Jan 17 2011 Richard W.M. Jones <rjones@redhat.com> - 5.9-1
8486e6
- New upstream version 5.9 (RHBZ#645541).
8486e6
- Package new wd_identify program.
8486e6
- Drop old cleanup patch, most of it is now upstream.
8486e6
- Add newer cleanup patch, sent upstream.
8486e6
- Fix some problems with the initscript (RHBZ#523391).
8486e6
- Add systemd service (file installed but not used) (RHBZ#661220).
8486e6
8486e6
* Wed Jan 13 2010 Richard W.M. Jones <rjones@redhat.com> - 5.5-7
8486e6
- Fix Source0 URL.
8486e6
8486e6
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.5-6
8486e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
8486e6
8486e6
* Fri Mar 13 2009 Richard W.M. Jones <rjones@redhat.com> - 5.5-5
8486e6
- Updated the cleanup patch and sent upstream.
8486e6
8486e6
* Fri Mar 13 2009 Richard W.M. Jones <rjones@redhat.com> - 5.5-3
8486e6
- Remove dubious "cleanup-nfs" patch.
8486e6
8486e6
* Thu Mar  5 2009 Richard W.M. Jones <rjones@redhat.com> - 5.5-2
8486e6
- Use '-' in defattr line instead of explicit file mode.
8486e6
8486e6
* Thu Feb 26 2009 Richard W.M. Jones <rjones@redhat.com> - 5.5-1
8486e6
- New upstream version 5.5.
8486e6
- Prepared the package for Fedora review.
8486e6
8486e6
* Mon Jun 11  2007 Lon Hohberger <lhh@redhat.com> - 5.3.1-7
8486e6
- Rebuild for RHEL5 Update 1 - Resolves: 227401
8486e6
8486e6
* Wed May 30  2007 Konrad Rzeszutek <konradr@redhat.com> - 5.3.1-6
8486e6
- Fixed the init script file.
8486e6
8486e6
* Tue May 29  2007 Konrad Rzeszutek <konradr@redhat.com> - 5.3.1-5
8486e6
- Fixed a compile warning in nfsmount_xdr file.
8486e6
8486e6
* Wed May 23  2007 Konrad Rzeszutek <konradr@redhat.com> - 5.3.1-4
8486e6
- Fixed rpmlint warnings.
8486e6
8486e6
* Wed May 16  2007 Konrad Rzeszutek <konradr@redhat.com> - 5.3.1-3
8486e6
- Changes to spec, init script and README file per Carol Hebert recommendation.
8486e6
8486e6
* Thu Apr 19  2007 Konrad Rzeszutek <konradr@redhat.com> - 5.3.1-2
8486e6
- Added README.watchdog.ipmi
8486e6
8486e6
* Mon Apr 16  2007 Konrad Rzeszutek <konradr@redhat.com> - 5.3.1-1
8486e6
- Initial copy.