Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update install.sh #187

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,17 @@ install_base() {

#This function will be called when user installed x-ui out of sercurity
config_after_install() {
echo -e "\x1b[31;1m888 d8P 888 888 888b d888 88888888888 888 8888888888 888 888 d8b 888
888 d8P 888 888 8888b d8888 888 888 888 888 888 Y8P 888
888 d8P 888 888 88888b.d88888 888 888 888 888 888 888
888d88K 8888888888 888Y88888P888 888 .d88b. .d8888b 88888b. 8888888 88888b. 888888 .d88b. 888d888 888888 8888b. 888 88888b. 88888b.d88b. .d88b. 88888b. 888888
8888888b 888 888 888 Y888P 888 888 d8P Y8b d88P" 888 "88b 888 888 "88b 888 d8P Y8b 888P" 888 "88b 888 888 "88b 888 "888 "88b d8P Y8b 888 "88b 888
888 Y88b 888 888 888 Y8P 888 888 88888888 888 888 888 888 888 888 888 88888888 888 888 .d888888 888 888 888 888 888 888 88888888 888 888 888
888 Y88b 888 888 888 " 888 888 Y8b. Y88b. 888 888 888 888 888 Y88b. Y8b. 888 Y88b. 888 888 888 888 888 888 888 888 Y8b. 888 888 Y88b.
888 Y88b 888 888 888 888 888 "Y8888 "Y8888P 888 888 8888888888 888 888 "Y888 "Y8888 888 "Y888 "Y888888 888 888 888 888 888 888 "Y8888 888 888 "Y888


"
echo -e "${yellow}出于安全考虑,安装/更新完成后需要强制修改端口与账户密码${plain}"
read -p "确认是否继续?[y/n]": config_confirm
if [[ x"${config_confirm}" == x"y" || x"${config_confirm}" == x"Y" ]]; then
Expand Down