Skip to content

Commit

Permalink
Fix not to print error message if SSL certificate request for the hos…
Browse files Browse the repository at this point in the history
…t default domain worked
  • Loading branch information
iliajie committed Aug 20, 2023
1 parent 1e345c0 commit 9898046
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion virtualmin-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1344,7 +1344,9 @@ if [ $errors -eq "0" ]; then
log_success "Installation Complete!"
log_success "If there were no errors above, Virtualmin should be ready"
log_success "to configure at https://${hostname}:10000 (or https://${address}:10000)."
log_success "You may receive a security warning in your browser on your first visit."
if [ -z "$ssl_host_success" ]; then
log_success "You may receive a security warning in your browser on your first visit."
fi
TIME=$(date +%s)
echo "$VER=$TIME" > "/etc/webmin/virtual-server/installed"
else
Expand Down

0 comments on commit 9898046

Please sign in to comment.