diff options
Diffstat (limited to 'sys-apps/quota/files/quota.rc')
-rw-r--r-- | sys-apps/quota/files/quota.rc | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/sys-apps/quota/files/quota.rc b/sys-apps/quota/files/quota.rc deleted file mode 100644 index 8f243e5cbc22..000000000000 --- a/sys-apps/quota/files/quota.rc +++ /dev/null @@ -1,34 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License, v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/quota/files/quota.rc,v 1.4 2004/07/15 00:49:46 agriffis Exp $ - -depend() { - need localmount -} - -start() { - ebegin "Starting Quota" - if [ -x /sbin/quotacheck ] - then - echo "Checking quotas. This may take some time." - /sbin/quotacheck -avug - echo "Done." - fi - if [ -x /sbin/quotaon ] - then - echo "Turning on quota" - /sbin/quotaon -avug - fi - eend $? -} - -stop() { - ebegin "Stopping quota" - if [ -x /sbin/quotaoff ] - then - echo "Turning quota off" - /sbin/quotaoff -avug - fi - eend $? -} |