Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 7 Jun 2011 13:50:08 GMT
From:      Dmitry Banschikov <d.banschikov@peterhost.ru>
To:        freebsd-bugs@FreeBSD.org
Subject:   Re: conf/157687: [patch] /etc/rc.d/quota and quotaon args
Message-ID:  <201106071350.p57Do8wi047242@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR conf/157687; it has been noted by GNATS.

From: Dmitry Banschikov <d.banschikov@peterhost.ru>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: conf/157687: [patch] /etc/rc.d/quota and quotaon args
Date: Tue, 07 Jun 2011 17:44:11 +0400

 It seems that patch was not attached. Here it is:
 
 --- quota.orig	2004-10-08 18:23:49.000000000 +0400
 +++ quota.new	2011-06-07 16:31:12.000000000 +0400
 @@ -15,18 +15,18 @@
   name="quota"
   rcvar=`set_rcvar`
   start_cmd="quota_start"
 -stop_cmd="/usr/sbin/quotaoff ${quotaoff_flags}"
 +stop_cmd="/usr/sbin/quotaoff ${quotaoff_flags:-\"-a\"}"
 
   quota_start()
   {
   	if checkyesno check_quotas; then
   		echo -n 'Checking quotas:'
 -		quotacheck ${quotacheck_flags}
 +		quotacheck ${quotacheck_flags:-"-a"}
   		echo ' done.'
   	fi
 
   	echo -n 'Enabling quotas:'
 -	quotaon ${quotaon_flags}
 +	quotaon ${quotaon_flags:-"-a"}
   	echo ' done.'
   }
 
 
 
 -- 
 
 Dmitry Banschikov



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201106071350.p57Do8wi047242>