Hi, everyone.
The most recent initscripts have a buglet in aurora detection.
rc.sysinit does:
[ -f /lib/aurora/functions -a -f /etc/aurora/Monitor -a -e /proc/fb -a \
"$(grep -c "" /proc/fb)" != 0 ] && aurora=1
At boot, you get:
grep: /proc/fb: No such file or directory
but at least aurora gets not set.
I do not know which is the purpose of the 'grep' (se if /proc/fb is not empty ?)
but can't it be done just without $() ?:
[ -f /lib/aurora/functions -a -f /etc/aurora/Monitor -a -e /proc/fb -a \
"grep -c "" /proc/fb" != 0 ] && aurora=1
Or even deleted...
--
J.A. Magallon $> cd pub
mailto:[EMAIL PROTECTED] $> more beer
Linux werewolf 2.4.1-ac4 #1 SMP Tue Feb 6 22:06:38 CET 2001 i686