summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-10-03 10:30:52 +0000
committerMike Frysinger <vapier@gentoo.org>2004-10-03 10:30:52 +0000
commit3a0eb272cc04af91f709633c76afbcb77fd0f1f5 (patch)
tree89eb5d31828000bec3a49c0e37965fbc8f8cdf7a /sys-apps/quota/files/quota.rc
parentmove from sys-apps (Manifest recommit) (diff)
downloadgentoo-2-3a0eb272cc04af91f709633c76afbcb77fd0f1f5.tar.gz
gentoo-2-3a0eb272cc04af91f709633c76afbcb77fd0f1f5.tar.bz2
gentoo-2-3a0eb272cc04af91f709633c76afbcb77fd0f1f5.zip
now in sys-fs
Diffstat (limited to 'sys-apps/quota/files/quota.rc')
-rw-r--r--sys-apps/quota/files/quota.rc34
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 $?
-}