diff options
author | Rolf Eike Beer <eike@sf-mail.de> | 2019-09-08 21:40:09 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2019-09-21 17:49:08 +0300 |
commit | 22d3664854eebe40015d56ef2475678329a9ec77 (patch) | |
tree | 655f479b700086be05d5fac9a8ff4d4e6323d219 /eclass | |
parent | mail-mta/qmail-ldap: depend on groups from acct-group (diff) | |
download | gentoo-22d3664854eebe40015d56ef2475678329a9ec77.tar.gz gentoo-22d3664854eebe40015d56ef2475678329a9ec77.tar.bz2 gentoo-22d3664854eebe40015d56ef2475678329a9ec77.zip |
eclass/qmail: drop qmail_create_groups
All ebuilds that were calling this directly or indirectly depend on acct-group
now.
Closes: https://bugs.gentoo.org/533184
Signed-off-by: Rolf Eike Beer <eike@sf-mail.de>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/qmail.eclass | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/eclass/qmail.eclass b/eclass/qmail.eclass index 8dd3ae99043f..429a0251353b 100644 --- a/eclass/qmail.eclass +++ b/eclass/qmail.eclass @@ -105,21 +105,10 @@ qmail_set_cc() { sed -e "s#'ar #'$(tc-getAR) #" -e "s#'ranlib #'$(tc-getRANLIB) #" -i make-makelib.sh } -# @FUNCTION: qmail_create_groups -# @DESCRIPTION: -# Keep qmail groups in sync across ebuilds -qmail_create_groups() { - einfo "Creating qmail groups" - enewgroup nofiles 200 - enewgroup qmail 201 -} - # @FUNCTION: qmail_create_users # @DESCRIPTION: # Keep qmail users in sync across ebuilds qmail_create_users() { - qmail_create_groups - einfo "Creating qmail users" enewuser alias 200 -1 "${QMAIL_HOME}"/alias 200 enewuser qmaild 201 -1 "${QMAIL_HOME}" 200 |