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 <nborisov@suse.com>
Reviewed-by: Eryu Guan <eguan@redhat.com>
Signed-off-by: Eryu Guan <eguan@redhat.com>
This commit is contained in:
Nikolay Borisov
2017-06-02 17:50:46 +03:00
committed by Eryu Guan
parent 2348063442
commit 0f15de7795
+1 -1
View File
@@ -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()