aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d/rcS.d/200-quota.sh
diff options
context:
space:
mode:
Diffstat (limited to 'rc.d/rcS.d/200-quota.sh')
-rwxr-xr-xrc.d/rcS.d/200-quota.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/rc.d/rcS.d/200-quota.sh b/rc.d/rcS.d/200-quota.sh
deleted file mode 100755
index bc7ee758..00000000
--- a/rc.d/rcS.d/200-quota.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-[[ $(type -t strstr) = "function" ]] || . /etc/init.d/functions
-[[ $cmdline ]] || cmdline=$(cat /proc/cmdline)
-
-if [ -x /sbin/quotacheck ] && { strstr "$cmdline" forcequotacheck || [ -f /forcequotacheck ]; } ; then
- action $"Checking local filesystem quotas: " /sbin/quotacheck -anug
-fi
-
-if [ -x /sbin/quotaon ]; then
- action $"Enabling local filesystem quotas: " /sbin/quotaon -aug
-fi
-: