diff options
author | Bill Nottingham <notting@redhat.com> | 1999-02-23 01:07:24 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-02-23 01:07:24 +0000 |
commit | ff74ec226e28316796e37a7f2301f79c7739b78c (patch) | |
tree | dae99ce80a8149a796099dc19f27d6612740862b /rc.d | |
parent | 83aa1f9a5ab54c1578b1e6c1c15f05ef784259df (diff) | |
download | initscripts-ff74ec226e28316796e37a7f2301f79c7739b78c.tar initscripts-ff74ec226e28316796e37a7f2301f79c7739b78c.tar.gz initscripts-ff74ec226e28316796e37a7f2301f79c7739b78c.tar.bz2 initscripts-ff74ec226e28316796e37a7f2301f79c7739b78c.tar.xz initscripts-ff74ec226e28316796e37a7f2301f79c7739b78c.zip |
fix 'force fsck on boot'
Diffstat (limited to 'rc.d')
-rwxr-xr-x | rc.d/rc.sysinit | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index bb22371a..46e5efb6 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -44,11 +44,11 @@ fi if [ -f /fsckoptions ]; then fsckoptions=`cat /fsckoptions` else - fsckoptions='' + fsckoptions= fi if [ -f /forcefsck ]; then - fsckoptions='-f $fsckoptions' + fsckoptions="-f $fsckoptions" fi if [ ! -f /fastboot ]; then |