From b48c733b347c75b7ff7a40549f92cb4f0c0af32e Mon Sep 17 00:00:00 2001 From: Joe Cooper Date: Tue, 19 Jun 2018 16:06:51 -0500 Subject: [PATCH] Maybe show IP address at end of install --- virtualmin-install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/virtualmin-install.sh b/virtualmin-install.sh index a2f916f..0019991 100644 --- a/virtualmin-install.sh +++ b/virtualmin-install.sh @@ -926,14 +926,15 @@ fi echo if [ $errors -eq "0" ]; then hostname=$(hostname -f) + detect_ip log_success "Installation Complete!" log_success "If there were no errors above, Virtualmin should be ready" - log_success "to configure at https://$hostname:10000." + log_success "to configure at https://${hostname}:10000 (or https://${address}:10000." log_success "You'll receive a security warning in your browser on your first visit." else log_warning "The following errors occurred during installation:" echo - printf "$errorlist" + printf "${errorlist}" log_warning "The last few lines of the log file were:" tail -15 $RUN_LOG fi