Merge pull request #2675 from cstrahan/fix-useradd

Fix -G delimiter in call to useradd
This commit is contained in:
lethalman 2014-05-21 00:40:50 +02:00
commit 1b0b0d3bb2

View file

@ -480,7 +480,7 @@ in {
if ! id "${u.name}" &>/dev/null; then
${pkgs.shadow}/sbin/useradd \
-g "${u.group}" \
-G "${toString u.extraGroups}" \
-G "${concatStringsSep "," u.extraGroups}" \
-s "${u.shell}" \
-d "${u.home}" \
${optionalString u.isSystemUser "--system"} \