From eaa3ab09d06cf2e5c3d862cfe75c197edaf6cd4a Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 15 Dec 2005 21:16:08 +0000 Subject: fix fsck invocation (#175803) --- initscripts.spec | 3 ++- rc.d/rc.sysinit | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/initscripts.spec b/initscripts.spec index 1ecc7a6e..6a62fa2a 100644 --- a/initscripts.spec +++ b/initscripts.spec @@ -1,6 +1,6 @@ Summary: The inittab file and the /etc/init.d scripts. Name: initscripts -Version: 8.18 +Version: 8.19 License: GPL Group: System Environment/Base Release: 1 @@ -208,6 +208,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Thu Dec 15 2005 Bill Nottingham - Require syslog, for alternate implementations thereof (#172885) +- Fix fsck invocation for weeding out netdev devices (#175803) * Fri Dec 2 2005 Bill Nottingham 8.18-1 - use new dhclient file paths, add appropriate conflict (#169164) diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 6fcce81d..10c9f408 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -389,9 +389,9 @@ if [ -z "$fastboot" -a "$READONLY" != "yes" ]; then STRING=$"Checking filesystems" echo $STRING if [ "${RHGB_STARTED}" != "0" -a -w /etc/rhgb/temp/rhgb-console ]; then - fsck -T -t opts=!_netdev -A -a $fsckoptions > /etc/rhgb/temp/rhgb-console + fsck -T -t noopts=_netdev -A -a $fsckoptions > /etc/rhgb/temp/rhgb-console else - fsck -T -t opts=!_netdev -A -a $fsckoptions + fsck -T -t noopts=_netdev -A -a $fsckoptions fi rc=$? -- cgit v1.2.1