diff options
author | Ulrich Müller <ulm@gentoo.org> | 2019-07-08 11:48:29 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2019-07-08 11:48:29 +0200 |
commit | 543b72390afe5d54f937d8fdf058c0681962c69c (patch) | |
tree | 47bd50f1365bf7e69319cf01b7849be9d0008310 /eclass/acct-group.eclass | |
parent | dev-python/zipp: new pkg, v0.5.1 (diff) | |
download | gentoo-543b72390afe5d54f937d8fdf058c0681962c69c.tar.gz gentoo-543b72390afe5d54f937d8fdf058c0681962c69c.tar.bz2 gentoo-543b72390afe5d54f937d8fdf058c0681962c69c.zip |
acct-group.eclass: Fix typo in error message.
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/acct-group.eclass')
-rw-r--r-- | eclass/acct-group.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/acct-group.eclass b/eclass/acct-group.eclass index 277536af4c2c..ab9095979ab7 100644 --- a/eclass/acct-group.eclass +++ b/eclass/acct-group.eclass @@ -104,7 +104,7 @@ acct-group_pkg_pretend() { elif [[ -n ${group_by_name} ]]; then eerror "The requested group exists already with wrong GID." eerror " groupname: ${ACCT_GROUP_NAME}" - eerror " requested UID: ${ACCT_GROUP_ID}" + eerror " requested GID: ${ACCT_GROUP_ID}" eerror " current entry: ${group_by_name}" die "Group ${ACCT_GROUP_NAME} exists with wrong GID" fi |