Removing useless call

This commit is contained in:
Steven Mondji-Lerider 2013-02-07 17:39:05 +00:00
parent 7811d081e7
commit 1e72ecb62a
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ QUOTA=/usr/sbin/setquota
DF=/bin/df
#checking if quotas are installed
command -v $QUOTA >/dev/null && continue || { echo "Quotas uninstalled"; exit 1; }
command -v $QUOTA >/dev/null || { echo "Quotas uninstalled"; exit 1; }
if [ $# -ne 2 ] || [[ ! "$MID" =~ ^[0-9]+$ ]] || [[ ! "$SIZE" =~ ^[0-9]+$ ]]; then
echo "Usage: quota_edit <uid> <size>"