We add a final message with details needed during 1st visit of the website

This commit is contained in:
Papa Dragon 2023-03-03 23:06:35 +01:00
parent 7daedb5de9
commit e6afe873b8

View file

@ -279,11 +279,16 @@ function launch_install {
}
function final_message {
final_summary=$summary_domain$summary_db_user$summary_db_pass$summary_db_name
whiptail \
--title "Website successfully installed" \
--msgbox "Your website was successfully installed. You must now visit https://$domain_name with your web browser to finish the setup. You will need the following:\n\n$summary_db_name$summary_db_pass$summary_db_user" \
10 80
print_info "Website successfully installed\n\n$summary_domain$summary_db_name$summary_db_pass$summary_db_user"
--msgbox "Your website was successfully installed. You must now visit https://$domain_name with your web browser to finish the setup. You will need the following:\n\n$final_summary" \
15 80
print_info "Website successfully installed
print_info "$summary_domain"
print_info "$summary_db_user"
print_info "$summary_db_pass"
print_info "$summary_db_name"
}