diff options
-rw-r--r-- | initscripts.spec | 3 | ||||
-rwxr-xr-x | 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 <notting@redhat.com> - Require syslog, for alternate implementations thereof (#172885) +- Fix fsck invocation for weeding out netdev devices (#175803) * Fri Dec 2 2005 Bill Nottingham <notting@redhat.com> 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=$? |