]> gitweb.michael.orlitzky.com - mjo-overlay.git/blobdiff - eclass/sys-user.eclass
sys-user.eclass: comment out the UID-placeholder file stuff for now.
[mjo-overlay.git] / eclass / sys-user.eclass
index 549e8b38aae57040f8caf6ff2f8cf977d77d3a05..6c0c2b81469cca5e989c17f88a1de3b83b5a6548 100644 (file)
@@ -1,6 +1,5 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Id$
 
 # @ECLASS: sys-user.eclass
 # @MAINTAINER:
@@ -24,14 +23,16 @@ SYS_USER_NAME="${PN}"
 
 # @ECLASS-VARIABLE: SYS_USER_GROUPS
 # @DESCRIPTION:
-# etc.
+# A space-separated list of groups that the user will belong to.
+# Dependencies on the appropriate sys-group packages are generated
+# automatically.
 : ${SYS_USER_GROUPS:=${PN}}
 
 # @ECLASS-VARIABLE: SYS_USER_UID
 # @REQUIRED
 # @DESCRIPTION:
-# etc. (use -1 to get next available using user.eclass)
-[[ -z "${SYS_USER_UID}" ]] && die "SYS_USER_UID must be set"
+# etc.
+
 
 # @ECLASS-VARIABLE: SYS_USER_UID_IMPORTANT
 # @REQUIRED
@@ -47,13 +48,13 @@ SLOT="0/${SYS_USER_UID}"
 
 # @ECLASS-VARIABLE: SYS_USER_HOME
 # @DESCRIPTION:
-# etc. (use -1 to get user.eclass default)
-: ${SYS_USER_HOME:=-1}
+# etc.
+: ${SYS_USER_HOME:=/home/${SYS_USER_NAME}}
 
 # @ECLASS-VARIABLE: SYS_USER_SHELL
 # @DESCRIPTION:
-# etc. (use -1 to get user.eclass default)
-: ${SYS_USER_SHELL:=-1}
+# etc.
+: ${SYS_USER_SHELL:=/bin/false}
 
 case ${EAPI} in
        6) ;;
@@ -74,24 +75,39 @@ sys-user_src_unpack() { :; }
 sys-user_src_compile() { :; }
 sys-user_src_test() { :; }
 
-sys-user_next_uid() {
-       local euid;
-       for (( euid = 101; euid <= 999; euid++ )); do
-               [[ -z $(egetent passwd "${euid}") ]] && break
-       done
-       if (( "${euid}" == 999 )); then
-               die "out of available UIDs!"
-       else
-               echo "${euid}"
-       fi
+sys-user_getuid() {
+       # Output the real UID of the given user, or the empty string if the
+       # user does not exist on the system.
+       echo $(id --real --user "${1}")
+}
+
+sys-user_create() {
+       # Create the user whose information is contained in the following
+       # variables:
+       #
+       #  * SYS_USER_NAME
+       #  * SYS_USER_UID
+       #  * SYS_USER_SHELL
+       #  * SYS_USER_HOME
+       #  * SYS_USER_GROUPS
+       #
+       # We don't create a group with the same name; that should be the
+       # job of the matching sys-group package.
+       useradd --no-user-group \
+                       ${SYS_USER_UID:+--uid }"${SYS_USER_UID}" \
+                       ${SYS_USER_GROUPS:+--groups }"${SYS_USER_GROUPS}" \
+                       --shell "${SYS_USER_SHELL}" \
+                       --home-dir "${SYS_USER_HOME}" \
+                       "${SYS_USER_NAME}"
 }
 
+
 sys-user_pkg_pretend() {
        # Sanity checks that would otherwise run code in global scope.
        #
        # First ensure that the user didn't say his UID is important and
        # then fail to specify one.
-       if (( "${SYS_USER_UID}" == -1 )) &&
+       if [[ -z "${SYS_USER_UID}" ]] &&
                   [[ "${SYS_USER_UID_IMPORTANT}" == "true" ]]; then
                # Don't make no damn sense.
                die "arbitrary UID requested with SYS_USER_UID_IMPORTANT=true"
@@ -109,8 +125,8 @@ sys-user_pkg_pretend() {
 
        # Finally, ensure that this username doesn't already exist with
        # another UID if its UID is supposedly important.
-       if [[ -n $(egetent passwd "${SYS_USER_NAME}") ]]; then
-               local olduid=$(id --real --user "${SYS_USER_NAME}")
+       local olduid=$(sys-user_getuid "${SYS_USER_NAME}")
+       if [[ -n "${olduid}" ]]; then
                if [[ "${SYS_USER_UID_IMPORTANT}" == "true" ]] && \
                           [[ "${SYS_USER_UID}" != "${olduid}" ]]; then
                        # The UID is important and specified, but there is already a
@@ -121,7 +137,8 @@ sys-user_pkg_pretend() {
 }
 
 sys-user_src_configure() {
-       if [[ -n $(egetent passwd "${SYS_USER_NAME}") ]]; then
+       local current_uid=$(sys-user_getuid "${SYS_USER_NAME}")
+       if [[ -n "${current_uid}" ]]; then
                # UPGRADE PATH: This user already exists, so if the eclass
                # consumer doesn't care about some settings, we can reuse the
                # pre-existing ones.
@@ -130,29 +147,22 @@ sys-user_src_configure() {
                # prevents us from incrementing the UID on a reinstall, and doing
                # so would break most packages that need a system user to exist.
                if [[ "${SYS_USER_UID_IMPORTANT}" != "true" ]]; then
-                       SYS_USER_UID=$(id --real --user "${SYS_USER_NAME}")
+                       SYS_USER_UID="${current_uid}"
                fi
 
-               if (( "${SYS_USER_HOME}" == -1 )); then
+               if [[ -z "${SYS_USER_HOME}" ]]; then
                        SYS_USER_HOME=$(egethome "${SYS_USER_NAME}")
                fi
 
-               if (( "${SYS_USER_SHELL}" == -1 )); then
+               if [[ -z "${SYS_USER_SHELL}" ]]; then
                        SYS_USER_SHELL=$(egetshell "${SYS_USER_NAME}")
-
-                       if [[ ${SYS_USER_SHELL} == */false ]] || \
-                                  [[ ${SYS_USER_SHELL} == */nologin ]]; then
-                               # WHYYYYY? enewuser complains if we try to set a default
-                               # shell explicitly.
-                               SYS_USER_SHELL="-1"
-                       fi
                fi
-       elif (( "${SYS_USER_UID}" == -1 )); then
-               # There is no pre-existing user (i.e. this isn't along the
-               # upgrade path), and the consumer says he doesn't care about the
-               # UID, so pick the next one.
-               SYS_USER_UID=$(sys-user_next_uid)
        fi
+
+       # The "useradd" and "usermod" tools expect a comma-separated list,
+       # so change our spaces to commas. Having duplicates in the list is
+       # not a problem for those two tools.
+       SYS_USER_GROUPS="${SYS_USER_GROUPS// /,}"
 }
 
 sys-user_src_install() {
@@ -163,24 +173,21 @@ sys-user_src_install() {
        # be possible.
        #
        # Beware, this only works if SYS_USER_UID is guaranteed to have a
-       # real UID and not, for example, -1. That is taken care of in
-       # src_configure() for now.
-       touch "${T}/${SYS_USER_UID}" || die
-       insinto "/var/lib/sys-user"
-       doins "${T}/${SYS_USER_UID}"
+       # real UID and not, for example, -1.
+       #
+       # TODO: this is a problem now!
+       #
+       #touch "${T}/${SYS_USER_UID}" || die
+       #insinto "/var/lib/sys-user"
+       #doins "${T}/${SYS_USER_UID}"
 }
 
 sys-user_pkg_preinst() {
-       if [[ -z $(egetent passwd "${SYS_USER_NAME}") ]]; then
+       if [[ -z $(sys-user_getuid "${SYS_USER_NAME}") ]]; then
                # The user does not already exist. This is the nice and easy
                # case because no matter how we got here, we want to go ahead
                # and create the (new) user.
-               enewuser "${SYS_USER_NAME}" \
-                                "${SYS_USER_UID}" \
-                                "${SYS_USER_SHELL}" \
-                                "${SYS_USER_HOME}" \
-                                "${SYS_USER_GROUPS}" \
-                       || die "failed to add user ${SYS_USER_NAME}"
+               sys-user_create || die "failed to add user ${SYS_USER_NAME}"
        elif [[ -n "${REPLACING_VERSIONS}" ]]; then
                #
                # This case is done in pkg_postint() to avoid clobbering a
@@ -208,18 +215,16 @@ sys-user_pkg_preinst() {
                local oldshell=$(egetshell "${SYS_USER_NAME}")
 
                if [[ "${oldhome}" != "${SYS_USER_HOME}" ]]; then
-                       die "home directory conflict for new user ${SYS_USER_HOME}"
+                       die "home directory conflict for new user: ${SYS_USER_HOME}"
                fi
 
                if [[ "${oldhshell}" != "${SYS_USER_SHELL}" ]]; then
-                       die "shell conflict for new user ${SYS_USER_HOME}"
+                       die "shell conflict for new user: ${SYS_USER_SHELL}"
                fi
 
                # The user already exists, so all we have left to do is to try
-               # to append SYS_USER_GROUPS to the existing groups. The "usermod"
-               # tool expects a comma-separated list, so change our spaces to
-               # commas. This does succeed if you append duplicates.
-               usermod --append --groups "${SYS_USER_GROUPS// /,}" \
+               # to append SYS_USER_GROUPS to the existing groups.
+               usermod --append --groups "${SYS_USER_GROUPS}" \
                        || die "failed to append groups to existing user ${SYS_USER_NAME}"
        fi
 }
@@ -232,21 +237,16 @@ sys-user_pkg_postinst() {
           # that this new version is going to add. At this point, in our
           # pkg_postinst(), the old version's pkg_prerm() phase should have
           # already happened.
-          if [[ -n $(egetent passwd "${SYS_USER_NAME}") ]]; then
+          if [[ -n $(sys-user_getuid "${SYS_USER_NAME}") ]]; then
                   die "User ${SYS_USER_NAME} already exists during an upgrade."
           else
-                  enewuser "${SYS_USER_NAME}" \
-                                       "${SYS_USER_UID}" \
-                                       "${SYS_USER_SHELL}" \
-                                       "${SYS_USER_HOME}" \
-                                       "${SYS_USER_GROUPS}" \
-                          || die "failed to add user ${SYS_USER_NAME}"
+                  sys-user_create || die "failed to add user ${SYS_USER_NAME}"
           fi
        fi
 }
 
 sys-user_pkg_prerm() {
-       if [[ -z $(egetent passwd "${SYS_USER_NAME}") ]]; then
+       if [[ -z $(sys-user_getuid "${SYS_USER_NAME}") ]]; then
                # We have successfully done nothing.
                ewarn "Tried to remove nonexistent user ${SYS_USER_NAME}."
        else