This commit is contained in:
parent
5cb448a5dd
commit
297a6717b5
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 11 15:50:24 CET 2008 - bwalle@suse.de
|
||||||
|
|
||||||
|
- Fix string in %preun (kexec -> kdump).
|
||||||
|
- Regenerate the kdump initrd on next startup after the kdump
|
||||||
|
package has been updated.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Nov 02 15:05:13 CET 2008 - bwalle@suse.de
|
Sun Nov 02 15:05:13 CET 2008 - bwalle@suse.de
|
||||||
|
|
||||||
|
20
kdump.spec
20
kdump.spec
@ -22,7 +22,7 @@ Url: http://freehg.org/u/bwalle/kdump/
|
|||||||
Name: kdump
|
Name: kdump
|
||||||
License: GPL v2 or later
|
License: GPL v2 or later
|
||||||
Version: 0.6.4
|
Version: 0.6.4
|
||||||
Release: 1
|
Release: 2
|
||||||
Requires: curl openssh makedumpfile
|
Requires: curl openssh makedumpfile
|
||||||
Summary: Script for kdump
|
Summary: Script for kdump
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
@ -93,9 +93,11 @@ if test -d /var/log/dump && rmdir /var/log/dump &>/dev/null ||
|
|||||||
! test -d /var/log/dump ; then
|
! test -d /var/log/dump ; then
|
||||||
ln -snf /var/crash /var/log/dump
|
ln -snf /var/crash /var/log/dump
|
||||||
fi
|
fi
|
||||||
|
# regenerate the kdump initrd on next startup
|
||||||
|
touch /etc/sysconfig/kdump
|
||||||
|
|
||||||
%preun
|
%preun
|
||||||
echo "Stopping kexec ..."
|
echo "Stopping kdump ..."
|
||||||
%stop_on_removal boot.kdump
|
%stop_on_removal boot.kdump
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
@ -124,6 +126,10 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%config %{_sysconfdir}/udev/rules.d/70-kdump.rules
|
%config %{_sysconfdir}/udev/rules.d/70-kdump.rules
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Nov 11 2008 bwalle@suse.de
|
||||||
|
- Fix string in %%preun (kexec -> kdump).
|
||||||
|
- Regenerate the kdump initrd on next startup after the kdump
|
||||||
|
package has been updated.
|
||||||
* Sun Nov 02 2008 bwalle@suse.de
|
* Sun Nov 02 2008 bwalle@suse.de
|
||||||
- Update to 0.6.4
|
- Update to 0.6.4
|
||||||
o change default location for KDUMP_SAVEDIR to "/var/crash"
|
o change default location for KDUMP_SAVEDIR to "/var/crash"
|
||||||
@ -168,7 +174,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- Use the full kernel release (obtained with get_kernel_version)
|
- Use the full kernel release (obtained with get_kernel_version)
|
||||||
to build the initrd name also when symlinks are used
|
to build the initrd name also when symlinks are used
|
||||||
(bnc#438218).
|
(bnc#438218).
|
||||||
* Thu Oct 23 2008 bwalle@suse.de
|
* Wed Oct 22 2008 bwalle@suse.de
|
||||||
- Actually check <version>-kdump before <version>-<flavour> when
|
- Actually check <version>-kdump before <version>-<flavour> when
|
||||||
looking for a suitable kdump kernel.
|
looking for a suitable kdump kernel.
|
||||||
* Fri Oct 17 2008 bwalle@suse.de
|
* Fri Oct 17 2008 bwalle@suse.de
|
||||||
@ -212,7 +218,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* Fri Aug 01 2008 bwalle@suse.de
|
* Fri Aug 01 2008 bwalle@suse.de
|
||||||
- update to 0.5.5
|
- update to 0.5.5
|
||||||
o make dependency to libssh2 optional
|
o make dependency to libssh2 optional
|
||||||
* Fri Aug 01 2008 bwalle@suse.de
|
* Thu Jul 31 2008 bwalle@suse.de
|
||||||
- update to 0.5.4
|
- update to 0.5.4
|
||||||
o always create empty ${tmp_mnt}/etc/fstab.kdump
|
o always create empty ${tmp_mnt}/etc/fstab.kdump
|
||||||
o change execution state to 'boot'
|
o change execution state to 'boot'
|
||||||
@ -225,12 +231,12 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
o handle more programs in $KDUMP_REQUIRED_PROGRAMS correct
|
o handle more programs in $KDUMP_REQUIRED_PROGRAMS correct
|
||||||
o move original /etc/fstab back
|
o move original /etc/fstab back
|
||||||
- add %%config to udev rule
|
- add %%config to udev rule
|
||||||
* Tue Jul 29 2008 bwalle@suse.de
|
* Mon Jul 28 2008 bwalle@suse.de
|
||||||
- update to 0.5.3
|
- update to 0.5.3
|
||||||
o don't exit with error code when the dump directory does not yet
|
o don't exit with error code when the dump directory does not yet
|
||||||
exist in the 'delete_dumps' command
|
exist in the 'delete_dumps' command
|
||||||
o fix syntax error in init/boot-kdump.sh
|
o fix syntax error in init/boot-kdump.sh
|
||||||
* Tue Jul 29 2008 bwalle@suse.de
|
* Mon Jul 28 2008 bwalle@suse.de
|
||||||
- call mkinitrd_setup in %%post and %%postun
|
- call mkinitrd_setup in %%post and %%postun
|
||||||
* Mon Jul 28 2008 bwalle@suse.de
|
* Mon Jul 28 2008 bwalle@suse.de
|
||||||
- update to 0.5.2
|
- update to 0.5.2
|
||||||
@ -332,7 +338,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* Mon Jun 11 2007 bwalle@suse.de
|
* Mon Jun 11 2007 bwalle@suse.de
|
||||||
- update to 0.2.2
|
- update to 0.2.2
|
||||||
o add read-debuglink
|
o add read-debuglink
|
||||||
* Mon Jun 11 2007 bwalle@suse.de
|
* Sun Jun 10 2007 bwalle@suse.de
|
||||||
- update to 0.2.1
|
- update to 0.2.1
|
||||||
o add manpages for all programs
|
o add manpages for all programs
|
||||||
* Mon May 28 2007 bwalle@suse.de
|
* Mon May 28 2007 bwalle@suse.de
|
||||||
|
Loading…
x
Reference in New Issue
Block a user