Resoves: bz 493707

This commit is contained in:
Neil Horman 2009-04-03 20:06:29 +00:00
parent 3d56f3248e
commit 94baf10fb4
2 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,6 @@
Name: kexec-tools
Version: 2.0.0
Release: 9%{?dist}
Release: 10%{?dist}
License: GPLv2
Group: Applications/System
Summary: The kexec/kdump userspace component.
@ -242,6 +242,9 @@ done
%changelog
* Fri Apr 03 2009 Neil Horman <nhorman@redhat.com> - 2.0.0-10
- Fix problem with quoted CORE_COLLECTOR string (bz 493707)
* Thu Apr 02 2009 Orion Poplawski <orion@cora.nwra.com> - 2.0.0-9
- Add BR glibc-static

View File

@ -2022,7 +2022,7 @@ if [ -n "$KDUMP_CONFIG_FILE" ]; then
emit " mkdir -p /mnt/$SAVE_PATH/127.0.0.1-\$DATE"
emit " VMCORE=/mnt/$SAVE_PATH/127.0.0.1-\$DATE/vmcore"
emit " export VMCORE"
if [ $CORE_COLLECTOR == "cp" ]; then
if [ "$CORE_COLLECTOR" == "cp" ]; then
emit " monitor_cp_progress \$VMCORE-incomplete &"
fi
emit " $CORE_COLLECTOR /proc/vmcore \$VMCORE-incomplete >/dev/null"