Skip to content

Commit

Permalink
Added instructions to set the password correclty
Browse files Browse the repository at this point in the history
  • Loading branch information
NidukaAkalanka authored Nov 10, 2022
1 parent 032cbd4 commit 2395291
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ panel_config() {
yellow "For security reasons, after the installation/ update, you need to remember the port and the account password"
read -rp "Please set the login user name [default is a random user name]: " config_account
[[ -z $config_account ]] && config_account=$(date +%s%N | md5sum | cut -c 1-8)
read -rp "Please set the login password [default is a random password]: " config_password
read -rp "Please set the login password. Don't include spaces [default is a random password]: " config_password
[[ -z $config_password ]] && config_password=$(date +%s%N | md5sum | cut -c 1-8)
read -rp "Please set the panel access port [default is a random port]: " config_port
[[ -z $config_port ]] && config_port=$(shuf -i 1000-65535 -n 1)
Expand Down

0 comments on commit 2395291

Please sign in to comment.