diff options
Diffstat (limited to 'rc.d/rcS.d/200-quota.sh')
-rwxr-xr-x | rc.d/rcS.d/200-quota.sh | 12 |
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 -: |