]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - etc/rc.d/quota
Pull in /etc/rc.conf.d/network so that ifconfig_<if> variables can be
[FreeBSD/FreeBSD.git] / etc / rc.d / quota
1 #!/bin/sh
2 #
3 # $FreeBSD$
4 #
5
6 # Enable/Check the quotas (must be after ypbind if using NIS)
7 #
8
9 # PROVIDE: quota
10 # REQUIRE: mountcritremote
11 # BEFORE: DAEMON
12 # KEYWORD: nojail
13
14 . /etc/rc.subr
15
16 name="quota"
17 rcvar="enable_quotas"
18 start_cmd="quota_start"
19 stop_cmd="/usr/sbin/quotaoff -a"
20
21 quota_start()
22 {
23         if checkyesno check_quotas; then
24                 echo -n 'Checking quotas:'
25                 quotacheck -a
26                 echo ' done.'
27         fi
28
29         echo -n 'Enabling quotas:'
30         quotaon -a
31         echo ' done.'
32 }
33
34 load_rc_config $name
35 run_rc_command "$1"