summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--initscripts.spec5
-rwxr-xr-xrc.d/rc.sysinit4
2 files changed, 6 insertions, 3 deletions
diff --git a/initscripts.spec b/initscripts.spec
index e1ee1232..9bd5638c 100644
--- a/initscripts.spec
+++ b/initscripts.spec
@@ -1,6 +1,6 @@
Summary: The inittab file and the /etc/init.d scripts.
Name: initscripts
-Version: 7.93.23.EL
+Version: 7.93.24.EL
License: GPL
Group: System Environment/Base
Release: 1
@@ -207,6 +207,9 @@ rm -rf $RPM_BUILD_ROOT
%ghost %attr(0664,root,utmp) /var/run/utmp
%changelog
+* Thu Dec 15 2005 Bill Nottingham <notting@redhat.com> 7.93.24.EL-1
+- correct fix for #172804
+
* Fri Dec 2 2005 Bill Nottingham <notting@redhat.com> 7.93.23.EL-1
- fix quoting of environment variables (#174849)
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit
index 03e9e7e9..bf6a9e0c 100755
--- a/rc.d/rc.sysinit
+++ b/rc.d/rc.sysinit
@@ -684,9 +684,9 @@ if [ -z "$fastboot" ]; then
STRING=$"Checking filesystems"
echo $STRING
if [ "${RHGB_STARTED}" != "0" -a -w /etc/rhgb/temp/rhgb-console ]; then
- fsck -T -t opts=!_netdev -R -A -a $fsckoptions > /etc/rhgb/temp/rhgb-console
+ fsck -T -t noopts=_netdev -R -A -a $fsckoptions > /etc/rhgb/temp/rhgb-console
else
- initlog -c "fsck -T -t opts=!_netdev -R -A -a $fsckoptions"
+ initlog -c "fsck -T -t noopts=_netdev -R -A -a $fsckoptions"
fi
rc=$?
if [ "$rc" -eq "0" ]; then