dirinstall fixes/improvements, other minor changes
[automated-distro-installer] / fai / config / distro-install-common / end
index 54a7b43d66289e741392a8b0e0f1041f1dc47261..a7745b7bbf44241512822648706470b00fe0d0e5 100755 (executable)
@@ -44,9 +44,9 @@ chpw() {
         echo "$0: warning: no pw set for $user" >&2
     fi
 }
-au() { # add user
+au() { # add user. i don't use adduser for portability
     if ! $ROOTCMD getent passwd ${@: -1}; then
-        $ROOTCMD useradd -m -s /bin/bash $@
+        $ROOTCMD useradd -Um -s /bin/bash $@
     fi
 }