NetBSD/etc/rc.d/quota
mycroft 7d2e1537c5 Add an _rc_subr_loaded variable, set to ":" by rc.subr. Scripts can use this
for a speedup by doing:
$_rc_subr_loaded . /etc/rc.subr
2004-08-13 18:08:03 +00:00

27 lines
396 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: quota,v 1.5 2004/08/13 18:08:03 mycroft Exp $
#
# PROVIDE: quota
# REQUIRE: mountall
# BEFORE: DAEMON
$_rc_subr_loaded . /etc/rc.subr
name="quota"
rcvar="quota"
start_cmd="quota_start"
stop_cmd="/usr/sbin/quotaoff -a"
quota_start()
{
echo -n "Checking quotas:"
/usr/sbin/quotacheck -a
echo " done."
/usr/sbin/quotaon -a
}
load_rc_config $name
run_rc_command "$1"