diff options
author | Bill Nottingham <notting@redhat.com> | 2003-01-31 16:54:28 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2003-01-31 16:54:28 +0000 |
commit | c6b3e61479c4d9d2ad7e857aedba4df065db2054 (patch) | |
tree | 4cc504078acdd959cbceca3d2e922e5aefb6144a /rc.d | |
parent | a81faf1f50fc8eccc6a6932489dd81a388756f94 (diff) | |
download | initscripts-c6b3e61479c4d9d2ad7e857aedba4df065db2054.tar initscripts-c6b3e61479c4d9d2ad7e857aedba4df065db2054.tar.gz initscripts-c6b3e61479c4d9d2ad7e857aedba4df065db2054.tar.bz2 initscripts-c6b3e61479c4d9d2ad7e857aedba4df065db2054.tar.xz initscripts-c6b3e61479c4d9d2ad7e857aedba4df065db2054.zip |
fix quota test (#83206)
Diffstat (limited to 'rc.d')
-rwxr-xr-x | rc.d/rc.sysinit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 34285b7d..08881074 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -288,7 +288,7 @@ LC_ALL=C grep -E '[[:space:]]+/[[:space:]]+' /etc/fstab | \ LC_ALL=C grep -q quota _ROOT_HAS_QUOTA=$? if [ X"$_RUN_QUOTACHECK" = X1 -a \ - "$_ROOT_HAS_QUOTA" -a \ + "$_ROOT_HAS_QUOTA" = "0" -a \ -x /sbin/quotacheck ]; then if [ -x /sbin/convertquota ]; then if [ -f /quota.user ]; then |