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, 12 insertions, 0 deletions
diff --git a/rc.d/rcS.d/200-quota.sh b/rc.d/rcS.d/200-quota.sh
new file mode 100755
index 00000000..bc7ee758
--- /dev/null
+++ b/rc.d/rcS.d/200-quota.sh
@@ -0,0 +1,12 @@
+#!/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
+: