1 #!/bin/sh 2 # 3 # $NetBSD: quota,v 1.1 2000/03/10 11:53:24 lukem Exp $ 4 # 5 6 # PROVIDE: quota 7 # REQUIRE: mountall 8 9 . /etc/rc.subr 10 . /etc/rc.conf 11 12 name="quota" 13 start_cmd="quota_start" 14 stop_cmd="/usr/sbin/quotaoff -a" 15 16 quota_start() 17 { 18 echo -n "Checking quotas:" 19 /usr/sbin/quotacheck -a 20 echo " done." 21 /usr/sbin/quotaon -a 22 } 23 24 run_rc_command "$1" 25