freebsd-dev/etc/rc.d/quota
Lars Engels 6c1a5e837d - Add descriptions to most of the rc scripts. Those are mostly taken from their
daemon's manpage and probably improved.
- Consistently use "filesystem" not "file system".

Approved by:	bapt, brueffer
Differential Revision:	D452
2016-04-23 16:10:54 +00:00

36 lines
576 B
Bash
Executable File

#!/bin/sh
#
# $FreeBSD$
#
# Enable/Check the quotas (must be after ypbind if using NIS)
# PROVIDE: quota
# REQUIRE: mountcritremote ypset
# BEFORE: DAEMON
# KEYWORD: nojail
. /etc/rc.subr
name="quota"
desc="Enable/check the quotas"
rcvar="quota_enable"
load_rc_config $name
start_cmd="quota_start"
stop_cmd="/usr/sbin/quotaoff ${quotaoff_flags}"
quota_start()
{
if checkyesno check_quotas; then
echo -n 'Checking quotas:'
quotacheck ${quotacheck_flags}
echo ' done.'
fi
echo -n 'Enabling quotas:'
quotaon ${quotaon_flags}
echo ' done.'
}
run_rc_command "$1"