user.eclass: Support disabling home directory creation
authorMichał Górny <mgorny@gentoo.org>
Wed, 29 May 2019 17:48:28 +0000 (19:48 +0200)
committerMichał Górny <mgorny@gentoo.org>
Thu, 20 Jun 2019 08:16:40 +0000 (10:16 +0200)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
eclass/user.eclass

index a24920af13f1aa31bc4331e35884dee798e8621a..0577df81ae78d311bbf345d6d57dfb4988753114 100644 (file)
@@ -71,12 +71,15 @@ egetent() {
 }
 
 # @FUNCTION: enewuser
-# @USAGE: <user> [uid] [shell] [homedir] [groups]
+# @USAGE: <user> [-M] [uid] [shell] [homedir] [groups]
 # @DESCRIPTION:
 # Same as enewgroup, you are not required to understand how to properly add
 # a user to the system.  The only required parameter is the username.
 # Default uid is (pass -1 for this) next available, default shell is
 # /bin/false, default homedir is /dev/null, and there are no default groups.
+#
+# If -M is passed, enewuser does not create the home directory if it does not
+# exist.
 enewuser() {
        if [[ ${EUID} != 0 ]] ; then
                einfo "Insufficient privileges to execute ${FUNCNAME[0]}"
@@ -84,6 +87,15 @@ enewuser() {
        fi
        _assert_pkg_ebuild_phase ${FUNCNAME}
 
+       local create_home=1
+       while [[ $1 == -* ]]; do
+               case $1 in
+                       -M) create_home=;;
+                       *) die "${FUNCNAME}: invalid option ${1}";;
+               esac
+               shift
+       done
+
        # get the username
        local euser=$1; shift
        if [[ -z ${euser} ]] ; then
@@ -213,7 +225,7 @@ enewuser() {
                ;;
        esac
 
-       if [[ ! -e ${ROOT}/${ehome} ]] ; then
+       if [[ -n ${create_home} && ! -e ${ROOT}/${ehome} ]] ; then
                einfo " - Creating ${ehome} in ${ROOT}"
                mkdir -p "${ROOT}/${ehome}"
                chown "${euser}" "${ROOT}/${ehome}"