From: Nikolay Borisov Date: Fri, 2 Jun 2017 14:50:46 +0000 (+0300) Subject: common/rc: Fix wrong word in _require_group X-Git-Tag: v2022.05.01~2025 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=0f15de779527e2359f6f179fd44290b68725a74b;p=xfstests-dev.git common/rc: Fix wrong word in _require_group Make _require_group yield the correct error message when the requested group is not found. Signed-off-by: Nikolay Borisov Reviewed-by: Eryu Guan Signed-off-by: Eryu Guan --- diff --git a/common/rc b/common/rc index 743df427..87e6ff08 100644 --- a/common/rc +++ b/common/rc @@ -2027,7 +2027,7 @@ _require_group() qa_group=$1 fi _cat_group | grep -q $qa_group - [ "$?" == "0" ] || _notrun "$qa_group user not defined." + [ "$?" == "0" ] || _notrun "$qa_group group not defined." } _filter_user_do()