summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2005-12-15 21:15:07 +0000
committerBill Nottingham <notting@redhat.com>2005-12-15 21:15:07 +0000
commit78831de74542d9c22536b776d513dd462b8a184b (patch)
tree103dff9ef9e0642244931061a2a73edbc4d7bd29
parent8c3d8c834d6a4d13ba520dda4f2e31b881d15368 (diff)
downloadinitscripts-78831de74542d9c22536b776d513dd462b8a184b.tar.gz
initscripts-78831de74542d9c22536b776d513dd462b8a184b.tar.xz
initscripts-78831de74542d9c22536b776d513dd462b8a184b.zip
negation goes on opts, not on the specific opts. use 'no' tor7-93-24-EL
avoid shell funnies. (noticed in #175803, fixes #172804 correctly)
-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