Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shinosaki committed Feb 23, 2024
1 parent 4fddc56 commit b47259b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion archlinux/preconf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ EOF

arch-chroot /mnt /bin/bash << 'EOF'
useradd -m -g wheel -s /bin/bash user
echo -e "pass" | passwd user
echo "pass" | passwd --stdin user
echo -e "[boot]\nsystemd=true\n[user]\ndefault=user" > /etc/wsl.conf
Expand Down
2 changes: 1 addition & 1 deletion debian/preconf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ EOF
chroot /work /bin/bash << 'EOF'
adduser --disabled-password --gecos "" user
adduser user sudo
echo -e "pass" | passwd user
echo "pass" | passwd --stdin user
echo -e "[boot]\nsystemd=true\n[user]\ndefault=user" > /etc/wsl.conf
Expand Down
2 changes: 1 addition & 1 deletion ubuntu/preconf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ EOF
chroot /work /bin/bash << 'EOF'
adduser --disabled-password --gecos "" user
adduser user sudo
echo -e "pass" | passwd user
echo "pass" | passwd --stdin user
echo -e "[boot]\nsystemd=true\n[user]\ndefault=user" > /etc/wsl.conf
Expand Down

0 comments on commit b47259b

Please sign in to comment.