1#!/bin/sh
2#
3# $FreeBSD$
4#
5
6# Enable/Check the quotas (must be after ypbind if using NIS)
7
8# PROVIDE: quota
9# REQUIRE: mountcritremote ypset
10# BEFORE: DAEMON
11# KEYWORD: nojail
12
13. /etc/rc.subr
14
15name="quota"
16rcvar="quota_enable"
17load_rc_config $name
18start_cmd="quota_start"
19stop_cmd="/usr/sbin/quotaoff ${quotaoff_flags}"
20
21quota_start()
22{
23	if checkyesno check_quotas; then
24		echo -n 'Checking quotas:'
25		quotacheck ${quotacheck_flags}
26		echo ' done.'
27	fi
28
29	echo -n 'Enabling quotas:'
30	quotaon ${quotaon_flags}
31	echo ' done.'
32}
33
34run_rc_command "$1"
35