From: Thomas Schuster Date: Thu, 9 Apr 2026 12:03:48 +0000 (+0200) Subject: groupadd: fix system account help text X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;ds=inline;p=thirdparty%2Fshadow.git groupadd: fix system account help text Co-authored-by: Valentin Mücklausch <143010987+Mozzarella32@users.noreply.github.com> Co-authored-by: Benno Raupach <28948901+braupach@users.noreply.github.com> --- diff --git a/po/de.po b/po/de.po index 0594ca211..92d777fd6 100644 --- a/po/de.po +++ b/po/de.po @@ -1291,6 +1291,9 @@ msgstr "" msgid " -r, --system create a system account\n" msgstr " -r, --system Ein Systemkonto erstellen\n" +msgid " -r, --system create a system group\n" +msgstr " -r, --system Eine Systemgruppe erstellen\n" + #, fuzzy #| msgid " -l, --list list the members of the group\n" msgid "" diff --git a/po/shadow.pot b/po/shadow.pot index 666060343..539d387da 100644 --- a/po/shadow.pot +++ b/po/shadow.pot @@ -1131,6 +1131,9 @@ msgstr "" msgid " -r, --system create a system account\n" msgstr "" +msgid " -r, --system create a system group\n" +msgstr "" + msgid "" " -U, --users USERS comma-separated list of users to add as\n" "\t members of this group\n" diff --git a/src/groupadd.c b/src/groupadd.c index a2a13f066..3c4ac8b13 100644 --- a/src/groupadd.c +++ b/src/groupadd.c @@ -116,7 +116,7 @@ usage (int status) (void) fputs (_(" -o, --non-unique allow to create groups with duplicate\n" " (non-unique) GID\n"), usageout); (void) fputs (_(" -p, --password PASSWORD use this encrypted password for the new group\n"), usageout); - (void) fputs (_(" -r, --system create a system account\n"), usageout); + (void) fputs (_(" -r, --system create a system group\n"), usageout); (void) fputs (_(" -R, --root CHROOT_DIR directory to chroot into\n"), usageout); (void) fputs (_(" -P, --prefix PREFIX_DIR directory prefix\n"), usageout); (void) fputs (_(" -U, --users USERS comma-separated list of users to add as\n"