diff options
-rw-r--r-- | dracut/adduser.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dracut/adduser.sh b/dracut/adduser.sh index 9c7ce04..bc30a98 100644 --- a/dracut/adduser.sh +++ b/dracut/adduser.sh @@ -14,7 +14,7 @@ echo "USERNAME=$USERNAME" >> ${NEWROOT}/etc/default/live.conf chmod 644 ${NEWROOT}/etc/default/live.conf # Create new user and remove password. We'll use autologin by default. -chroot ${NEWROOT} useradd -c $USERNAME -m $USERNAME -G systemd-journal,wheel -s /bin/bash +chroot ${NEWROOT} useradd -c $USERNAME -m $USERNAME -G wheel -s /bin/bash chroot ${NEWROOT} passwd -d $USERNAME >/dev/null 2>&1 # Setup default root password (voidlinux). |