From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; ja-JP; rv:1.1) Gecko/20021030 for VineLinux 0vl6 Description of problem: quota checking of / partition in rc.sysinit is not cool. Because AWK have regex functionality, the combination of grep and awk is not cool. Version-Release number of selected component (if applicable): How reproducible: Always Steps to Reproduce: 1. see /etc/rc.sysinit Actual Results: rc.sysinit::286 # Possibly update quotas if fsck was run on /. LC_ALL=C grep -E '[[:space:]]+/[[:space:]]+' /etc/fstab | \ awk '{ print $4 }' | \ LC_ALL=C grep -q quota _ROOT_HAS_QUOTA=$? Expected Results: rc.sysinit::286 # Possibly update quotas if fsck was run on /. LC_ALL=C awk '(($2 == "/") && ($4 ~ /quota/)){found = 1; exit;} END{ if (!found) exit 1; }' /etc/fstab _ROOT_HAS_QUOTA=$? Additional info:
This is meaningless, so I closed this.