39 lines
965 B
Bash
39 lines
965 B
Bash
#!/bin/bash
|
|
|
|
# The Fedora WSL out of box experience script.
|
|
#
|
|
# This command runs the first time the user opens an interactive shell.
|
|
#
|
|
# A non-zero exit code indicates to WSL that setup failed.
|
|
|
|
set -ueo pipefail
|
|
|
|
DEFAULT_USER_ID=1000
|
|
|
|
echo 'Please create a default user account. The username does not need to match your Windows username.'
|
|
echo 'For more information visit: https://aka.ms/wslusers'
|
|
|
|
if getent passwd $DEFAULT_USER_ID > /dev/null ; then
|
|
echo 'User account already exists, skipping creation'
|
|
exit 0
|
|
fi
|
|
|
|
# Prompt from the username
|
|
read -r -p 'Enter new UNIX username: ' username
|
|
|
|
# Create the user
|
|
/usr/sbin/useradd -m -G wheel --uid $DEFAULT_USER_ID "$username"
|
|
|
|
cat > /etc/sudoers.d/wsluser << EOF
|
|
# Ensure the WSL initial user can use sudo
|
|
$username ALL=(ALL) NOPASSWD: ALL
|
|
EOF
|
|
|
|
# Set the default user; necessary when this script is manually run in versions
|
|
# of WSL prior to 2.4.
|
|
cat >> /etc/wsl.conf << EOF
|
|
|
|
[user]
|
|
default = "$username"
|
|
EOF
|