From 6182f368e757b2852c07cc79779316306be8ff10 Mon Sep 17 00:00:00 2001 From: Till Wiese Date: Wed, 15 May 2019 20:08:01 +0200 Subject: [PATCH] Small typo fix in documentation (#56480) The documentation was probably C&P'd from user, leaving a "useradd" mention where a "groupadd" should be. --- lib/ansible/modules/system/group.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/system/group.py b/lib/ansible/modules/system/group.py index ba32247289d..1284e41e077 100644 --- a/lib/ansible/modules/system/group.py +++ b/lib/ansible/modules/system/group.py @@ -48,7 +48,7 @@ options: description: - Forces the use of "local" command alternatives on platforms that implement it. - This is useful in environments that use centralized authentication when you want to manipulate the local groups. - (e.g. it uses C(lgroupadd) instead of C(useradd)). + (e.g. it uses C(lgroupadd) instead of C(groupadd)). - This requires that these commands exist on the targeted host, otherwise it will be a fatal error. type: bool default: no