#! /bin/sh

. "`dirname $0`/rcdefs"

PATH=${PATH_SYS}

case "$1" in
  start)
    Print -n "Starting quota subsystem... "
    quotaon -a
    Print "done."
    ;;
  stop)
    Print -n "Stopping quota subsystem... "
    quotaoff -a
    Print "done."
    ;;
  *)
    Usage "$0"
    exit 1
esac

exit 0
