bunch of minor updates
[automated-distro-installer] / fai / config / distro-install-common / end
index e764c32ea67367e21a887e518926694071f999d3..ec0d1cf9ad633ac60600b77394c579187c4ca32f 100755 (executable)
@@ -41,8 +41,9 @@ chpw() {
   fi
 }
 au() { # add user. i don't use adduser for portability
-  if ! $ROOTCMD getent passwd ${@: -1}; then
-    $ROOTCMD useradd -Um -s /bin/bash $@
+  local user=${@: -1}
+  if ! $ROOTCMD getent passwd $user; then
+    $ROOTCMD useradd -c $user -Um -s /bin/bash $@
   fi
 }