SHA256
1
0
forked from pool/kdump
OBS User unknown 2008-08-22 22:48:34 +00:00 committed by Git OBS Bridge
parent 4914977c0a
commit 59241bf4c8
3 changed files with 72 additions and 1 deletions

View File

@ -0,0 +1,41 @@
changeset: 314:f4cf2ef3cc3e
tag: tip
user: Bernhard Walle <bwalle@suse.de>
date: Mon Aug 18 16:39:12 2008 +0200
summary: Change default location of KDUMP_SAVEDIR to "/var/crash"
diff -r f2128430a054 -r f4cf2ef3cc3e ChangeLog
--- a/ChangeLog Fri Aug 15 14:34:55 2008 +0200
+++ b/ChangeLog Mon Aug 18 16:39:12 2008 +0200
@@ -1,3 +1,7 @@
+2008-08-18 Bernhard Walle <bwalle@suse.de>
+
+ * change default location to "/var/crash"
+
2008-08-15 Bernhard Walle <bwalle@suse.de>
* make the kdump init script a boot script ("boot.kdump")
diff -r f2128430a054 -r f4cf2ef3cc3e NEWS
--- a/NEWS Fri Aug 15 14:34:55 2008 +0200
+++ b/NEWS Mon Aug 18 16:39:12 2008 +0200
@@ -1,3 +1,7 @@
+0.6.4
+-----
+ * change default location for KDUMP_SAVEDIR to "/var/crash"
+
0.6.3
-----
* make the kdump init script a boot script ("boot.kdump")
diff -r f2128430a054 -r f4cf2ef3cc3e sysconfig.kdump
--- a/sysconfig.kdump Fri Aug 15 14:34:55 2008 +0200
+++ b/sysconfig.kdump Mon Aug 18 16:39:12 2008 +0200
@@ -91,7 +91,7 @@
# See also: kdump(5) which contains an exact specification for the URL format.
# Consider using the "yast2 kdump" module if you are unsure.
#
-KDUMP_SAVEDIR="file:///var/log/dump"
+KDUMP_SAVEDIR="file:///var/crash"
## Type: integer
## Default: 5

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Aug 18 18:10:16 CEST 2008 - bwalle@suse.de
- also create /var/log/dump link when the /var/log/dump directory
did not exist
- delete /var/log/dump link in %postun
-------------------------------------------------------------------
Mon Aug 18 16:40:53 CEST 2008 - bwalle@suse.de
- change default for KDUMP_SAVEDIR to "/var/crash"
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Aug 15 14:41:25 CEST 2008 - bwalle@suse.de Fri Aug 15 14:41:25 CEST 2008 - bwalle@suse.de

View File

@ -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.3 Version: 0.6.3
Release: 1 Release: 10
Requires: curl openssh makedumpfile Requires: curl openssh makedumpfile
Summary: Script for kdump Summary: Script for kdump
Group: System/Kernel Group: System/Kernel
@ -34,6 +34,7 @@ BuildRequires: libssh2-devel
%endif %endif
PreReq: %insserv_prereq %fillup_prereq mkinitrd PreReq: %insserv_prereq %fillup_prereq mkinitrd
Source: %{name}-%{version}.tar.bz2 Source: %{name}-%{version}.tar.bz2
Patch0: %{name}-f4cf2ef3cc3e6414d7d9386de0ebf7d633cbfed5
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
# rename "kdump-helpers" (10.3) -> "kdump" (11.0/SP2) # rename "kdump-helpers" (10.3) -> "kdump" (11.0/SP2)
Provides: kdump-helpers = 0.2.4 Provides: kdump-helpers = 0.2.4
@ -55,6 +56,7 @@ Authors:
%prep %prep
%setup %setup
%patch0 -p1
%build %build
mkdir build mkdir build
@ -70,10 +72,17 @@ cd -
# symlink for init script # symlink for init script
mkdir -p $RPM_BUILD_ROOT/sbin mkdir -p $RPM_BUILD_ROOT/sbin
ln -s /etc/init.d/boot.kdump $RPM_BUILD_ROOT/sbin/rckdump ln -s /etc/init.d/boot.kdump $RPM_BUILD_ROOT/sbin/rckdump
# empty directory
mkdir $RPM_BUILD_ROOT/var/crash
%post %post
%{fillup_and_insserv -n kdump boot.kdump} %{fillup_and_insserv -n kdump boot.kdump}
/sbin/mkinitrd_setup /sbin/mkinitrd_setup
# if /var/log/dump is empty, make it a symlink to /var/crash
if test -d /var/log/dump && rmdir /var/log/dump &>/dev/null ||
! test -d /var/log/dump ; then
ln -s /var/crash /var/log/dump
fi
%preun %preun
echo "Stopping kexec ..." echo "Stopping kexec ..."
@ -83,6 +92,8 @@ echo "Stopping kexec ..."
%restart_on_update boot.kdump %restart_on_update boot.kdump
%insserv_cleanup %insserv_cleanup
/sbin/mkinitrd_setup /sbin/mkinitrd_setup
# delete symbolic link
rm /var/log/dump &>/dev/null || true
%clean %clean
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
@ -101,8 +112,15 @@ echo "Stopping kexec ..."
/var/adm/fillup-templates/sysconfig.kdump /var/adm/fillup-templates/sysconfig.kdump
/lib/mkinitrd/scripts/*-kdump.sh /lib/mkinitrd/scripts/*-kdump.sh
%config %{_sysconfdir}/udev/rules.d/70-kdump.rules %config %{_sysconfdir}/udev/rules.d/70-kdump.rules
%dir /var/crash
%changelog %changelog
* Mon Aug 18 2008 bwalle@suse.de
- also create /var/log/dump link when the /var/log/dump directory
did not exist
- delete /var/log/dump link in %%postun
* Mon Aug 18 2008 bwalle@suse.de
- change default for KDUMP_SAVEDIR to "/var/crash"
* Fri Aug 15 2008 bwalle@suse.de * Fri Aug 15 2008 bwalle@suse.de
- update to 0.6.3 - update to 0.6.3
o make the kdump init script a boot script ("boot.kdump") o make the kdump init script a boot script ("boot.kdump")