Hello,<br>
I noticed after a crash (due to loss of electricity) that file systems was not asked to be fscked<br>
after reboot. The file /.autofsck  is created at boot, as before,
but comparing rh el 4 with fc5 it seemes that inside rc.sysinit the
piece below is missing, so that <br>
the system does not prompt if one wants to force fsck and one has to manually create /forcefsck and reboot in this case<br>
(or probably is there a boot flag to tell to force fsck? I don't know this).<br>
<br>
        if [ "$PROMPT" != "no" ]; then<br>
               
if [ "$AUTOFSCK_DEF_CHECK" = "yes" ]; then<br>
                       
if /sbin/getkey -c $AUTOFSCK_TIMEOUT -m $"Press N within %d seconds to
not force file system integrity check..." n ; then<br>
                               
AUTOFSCK_OPT=<br>
                       
fi<br>
                else<br>
                       
if /sbin/getkey -c $AUTOFSCK_TIMEOUT -m $"Press Y within %d seconds to
force file system integrity check..." y ; then<br>
                               
AUTOFSCK_OPT=-f<br>
                       
fi<br>
                fi<br>
                echo<br>
        else<br>
                # PROMPT not allowed<br>
               
if [ "$AUTOFSCK_DEF_CHECK" = "yes" ]; then<br>
                       
echo $"Forcing file system integrity check due to default setting"<br>
                else<br>
                       
echo $"Not forcing file system integrity check due to default setting"<br>
                fi<br>
        fi<br>
I'm testing fedora right now and don't know previous versions, so this
could also be standard policy for fedora. Sorry in this case.<br>
Is this ok, due to devel os or did it disappear uncorrectly?<br>
I would like to have this chance also for devel/test systems.<br>
Just my opinion.<br>
Thanks for reading.<br>
Gianluca<br>