diff options
author | Bill Nottingham <notting@redhat.com> | 2005-12-15 21:16:08 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2005-12-15 21:16:08 +0000 |
commit | eaa3ab09d06cf2e5c3d862cfe75c197edaf6cd4a (patch) | |
tree | 4c750e3c8a5532dea679fe7919376f85b6c55762 | |
parent | 71f2e2274d82aab51c74501a66e08594f516b445 (diff) | |
download | initscripts-eaa3ab09d06cf2e5c3d862cfe75c197edaf6cd4a.tar initscripts-eaa3ab09d06cf2e5c3d862cfe75c197edaf6cd4a.tar.gz initscripts-eaa3ab09d06cf2e5c3d862cfe75c197edaf6cd4a.tar.bz2 initscripts-eaa3ab09d06cf2e5c3d862cfe75c197edaf6cd4a.tar.xz initscripts-eaa3ab09d06cf2e5c3d862cfe75c197edaf6cd4a.zip |
fix fsck invocation (#175803)
-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=$? |