Resolves: bz248797

This commit is contained in:
Neil Horman 2007-07-19 12:33:57 +00:00
parent f552ef481c
commit 7c84ec10fe
2 changed files with 3 additions and 2 deletions

View File

@ -252,7 +252,7 @@ rm -f %{_datadir}/firstboot/modules/firstboot_kdump.py
%doc kexec-kdump-howto.txt %doc kexec-kdump-howto.txt
%changelog %changelog
* Wed Jul 19 2007 Neil Horman <nhorman@redhat.com> - 1.101-76%{dist} * Thu Jul 19 2007 Neil Horman <nhorman@redhat.com> - 1.101-76%{dist}
- Fix mkdumprd to suppress informative messages (bz 248797) - Fix mkdumprd to suppress informative messages (bz 248797)
* Wed Jul 18 2007 Neil Horman <nhorman@redhat.com> - 1.101-75%{dist} * Wed Jul 18 2007 Neil Horman <nhorman@redhat.com> - 1.101-75%{dist}

View File

@ -971,7 +971,8 @@ if [ -n "$CORE_COLLECTOR" ]; then
rm -rf $IMAGE rm -rf $IMAGE
exit 1 exit 1
fi fi
/sbin/makedumpfile -g $MNTIMAGE/etc/makedumpfile.config -x /usr/lib/debug/lib/modules/$RUN_KERN_VER/vmlinux > /dev/null /sbin/makedumpfile -g $MNTIMAGE/etc/makedumpfile.config -x
/usr/lib/debug/lib/modules/$RUN_KERN_VER/vmlinux > /dev/null 2>&1
if [ $? != 0 ]; then if [ $? != 0 ]; then
echo "could not generate makedumpfile configuration. aborting" echo "could not generate makedumpfile configuration. aborting"
rm -rf $MNTIMAGE rm -rf $MNTIMAGE