OBS User unknown 2007-02-09 15:49:20 +00:00 committed by Git OBS Bridge
parent fcc386d98e
commit df776890da
5 changed files with 24 additions and 5 deletions

6
kdump
View File

@ -244,6 +244,12 @@ copy_dump_from_dumpdev ()
fi
dumpsize=`$KDUMP_HELPER -l "$KDUMP_DUMPDEV" | sed -e 's/Length: //g'`
if [ -z "$dumpsize" -o "$dumpsize" = 0 ] ; then
echo -n " Unable to retrieve the dump size"
rc_status -s
rc_failed
fi
dumpsize_mb=$(($dumpsize / 1024 / 1024))
if [ $KDUMP_FREE_DISK_SIZE -gt 0 ]; then

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ca07cbc8d32fd9c6c90fe504d5db836dc61ff736fcd4fb76b52f38267144324f
size 7769

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:716047006fb4ef8647f2ad0f635e1190e0ccdf1c3ea7c92d565ac3b315aa9681
size 7851

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Fri Feb 9 13:34:41 CET 2007 - bwalle@suse.de
- fixed overflow error that prints the size from being printed
correctly if the size doesn't fit into an int (#243058)
- improved error handling to make sure that a similar problem as
in #243058 will output a better error message
-------------------------------------------------------------------
Wed Feb 7 15:42:35 CET 2007 - bwalle@suse.de

View File

@ -11,7 +11,7 @@
# norootforbuild
Name: kexec-tools
%define helperversion 0.1.0
%define helperversion 0.1.1
%define package_version testing-20070205
License: GNU General Public License (GPL)
Group: System/Kernel
@ -19,7 +19,7 @@ Requires: %insserv_prereq %fillup_prereq
Autoreqprov: on
Summary: Tools for fast kernel loading
Version: 1.101
Release: 69
Release: 71
Source: %{name}-%{package_version}.tar.bz2
Source1: kdump
Source2: sysconfig.kdump
@ -122,6 +122,11 @@ true # ignore errors
%{_sbindir}/kdump-helper
%changelog -n kexec-tools
* Fri Feb 09 2007 - bwalle@suse.de
- fixed overflow error that prints the size from being printed
correctly if the size doesn't fit into an int (#243058)
- improved error handling to make sure that a similar problem as
in #243058 will output a better error message
* Wed Feb 07 2007 - bwalle@suse.de
- don't refuse to deinstall kexec-tools if kdump was not configured
(#243081)