All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] common: Fix wrong word in _require_group
@ 2017-06-02 14:50 Nikolay Borisov
  0 siblings, 0 replies; only message in thread
From: Nikolay Borisov @ 2017-06-02 14:50 UTC (permalink / raw)
  To: eguan; +Cc: fstests, Nikolay Borisov

Make _require_group yield the correct error message when the requested 
group is not found. 

Signed-off-by: Nikolay Borisov <nborisov@suse.com>
---
 common/rc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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()
-- 
2.12.3


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-06-02 14:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-02 14:50 [PATCH] common: Fix wrong word in _require_group Nikolay Borisov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.