fix typo in useradd string

This commit is contained in:
Oxapentane - 2023-06-09 19:51:33 +02:00
parent 0a27001ca6
commit 5dec39fc36
Signed by: oxapentane
GPG Key ID: 91FA5E5BF9AA901C

View File

@ -25,7 +25,7 @@ pkgs.dockerTools.buildImage {
let
cont-interpreter = "/bin/bash";
useradd-string = (user: hashed-pw: is-admin: ''useradd \
${if is-admin then "-aG ${jupyterAdminGroup}" else ""} \
${if is-admin then "-G ${jupyterAdminGroup}" else ""} \
-p ${hashed-pw} \
${user}'');