1. Regarding quotacheck cronjob. 0 3 * * 0 /usr/sbin/quotacheck -avug its does not work because quota is enabled is filesystem is mounted rw. proper line should be: 0 3 * * 0 quotaoff -a && quotacheck -avugm && quotaon -a 2. Regarding quota at boot level. It does not work because system mounted rw and quotachechk fails. should be added strings about modyfiying /etc/conf.d/quota: QUOTACHECK_OPTS="-avugm" Reproducible: Always
Actually, quotacheck should never be scheduled. As long as your kernel supports quota's, it'll track the usage itself. quotacheck is when the quota files are corrupt. In that case, the user should bring the system in single user mode (or at least make sure no changes occur on the file system) and run quotacheck.
Fixed in CVS, should show up on the site in an hour or so.