in the original bootini.pl file is a line to remove the loast os. This looks for the English string:
> my @lines = grep { $_ !~ /Previous Operating System on/ } <BOOTINI>;
I replaced this line with an operation, which simply decreses the timeout time in the boot menu.
> my @lines = map { $_ =~ /timeout/ ? "timeout=1\n" : $_ } <BOOTINI>;
Pherhaps sombody could need it...
Gerhard
------------------------------------------------------- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click _______________________________________________ unattended-info mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/unattended-info
