mirror of
https://gitlab.com/ahoneybun/nyxi-installer.git
synced 2025-05-12 11:04:02 -06:00
9 lines
119 B
Bash
9 lines
119 B
Bash
# Set user password
|
|
echo "----------"
|
|
echo ""
|
|
echo "Which is the username?"
|
|
read userName
|
|
|
|
sudo passwd $userName
|
|
|
|
exit
|