summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2005-11-10 22:19:48 +0000
committerBill Nottingham <notting@redhat.com>2005-11-10 22:19:48 +0000
commit251a5d9c0e84669cd1c2f4b0e8767cdb198377ee (patch)
tree225308ccd5947519c2901d28256cb731309b6424
parent9c75238aba5c6944c719341c499fae5e41316a53 (diff)
downloadinitscripts-251a5d9c0e84669cd1c2f4b0e8767cdb198377ee.tar.gz
initscripts-251a5d9c0e84669cd1c2f4b0e8767cdb198377ee.tar.xz
initscripts-251a5d9c0e84669cd1c2f4b0e8767cdb198377ee.zip
don't fsck netdev filesystems in rc.sysinit (#169403)
-rwxr-xr-xrc.d/rc.sysinit4
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit
index d94ee84d..bc89fda9 100755
--- a/rc.d/rc.sysinit
+++ b/rc.d/rc.sysinit
@@ -675,9 +675,9 @@ if [ -z "$fastboot" ]; then
STRING=$"Checking filesystems"
echo $STRING
if [ "${RHGB_STARTED}" != "0" -a -w /etc/rhgb/temp/rhgb-console ]; then
- fsck -T -R -A -a $fsckoptions > /etc/rhgb/temp/rhgb-console
+ fsck -T -t opts=!_netdev -R -A -a $fsckoptions > /etc/rhgb/temp/rhgb-console
else
- initlog -c "fsck -T -R -A -a $fsckoptions"
+ initlog -c "fsck -T -t opts=!_netdev -R -A -a $fsckoptions"
fi
rc=$?
if [ "$rc" -eq "0" ]; then