summaryrefslogtreecommitdiffstats
path: root/rc.d
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 /rc.d
parent8c3d8c834d6a4d13ba520dda4f2e31b881d15368 (diff)
negation goes on opts, not on the specific opts. use 'no' tor7-93-24-EL
avoid shell funnies. (noticed in #175803, fixes #172804 correctly)
Diffstat (limited to 'rc.d')
-rwxr-xr-xrc.d/rc.sysinit4
1 files changed, 2 insertions, 2 deletions
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