﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
686	mindi grub files content	victor gattegno	victor gattegno	"


In rev [3121], device.map.lst is used, but it is device.map

So :

{{{
if [ -r /boot/grub/device.map.lst ]; then
	LogFile ""-------------""
	LogFile ""INFO: /boot/grub/device.map content""
	LogFile ""-------------""
	cat /boot/grub/menu.lst >> $LOGFILE

}}}

Should be replaced by :

{{{
if [ -r /boot/grub/device.map ]; then
	LogFile ""-------------""
	LogFile ""INFO: /boot/grub/device.map content""
	LogFile ""-------------""
	cat /boot/grub/device.map >> $LOGFILE
	LogFile ""-------------""
}}}

And, as in some distribs, menu.lst is named grub.conf (RHEL) or grub.cfg (Ubuntu), should be added :

{{{
if [ -r /boot/grub/grub.conf ]; then
	LogFile ""-------------""
	LogFile ""INFO: /boot/grub/grub.conf content""
	LogFile ""-------------""
	cat /boot/grub/grub.conf >> $LOGFILE
	LogFile ""-------------""
if [ -r /boot/grub/grub.cfg ]; then
	LogFile ""-------------""
	LogFile ""INFO: /boot/grub/grub.cfg content""
	LogFile ""-------------""
	cat /boot/grub/grub.cfg >> $LOGFILE
	LogFile ""-------------""
}}}


"	defect	closed	low	3.0.4	mindi	3.0.3	normal	fixed	mindi grub	victor gattegno
