You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If this should be ran as root, wouldn't this break things in the updateUserAccount function?
if [[ $createUser == [nN] ]]; then
username=$(whoami)
updateUserAccount "${username}"
elif [[ $createUser == [yY] ]]; then
read -rp "Enter the username of the new user account: " username
addUserAccount "${username}"
else
echo 'This is not a valid choice!'
exit 1
fi
The text was updated successfully, but these errors were encountered:
If this should be ran as root, wouldn't this break things in the updateUserAccount function?
The text was updated successfully, but these errors were encountered: