diff options
Diffstat (limited to 'mkosi.postinst.chroot')
-rwxr-xr-x | mkosi.postinst.chroot | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/mkosi.postinst.chroot b/mkosi.postinst.chroot index 1809a302bc..0d0eab93d2 100755 --- a/mkosi.postinst.chroot +++ b/mkosi.postinst.chroot @@ -3,18 +3,11 @@ set -e set -o nounset -if [[ "$DISTRIBUTION" =~ ubuntu|debian ]]; then - SUDO_GROUP=sudo -else - SUDO_GROUP=wheel -fi - useradd \ --uid 4711 \ --user-group \ --create-home \ --password "$(openssl passwd -1 testuser)" \ - --groups "$SUDO_GROUP",systemd-journal \ --shell /bin/bash \ testuser |