Development

This commit is contained in:
Matthew Grotke 2026-05-23 16:52:42 -04:00
parent ceb8082e0c
commit b8f1e5f980

View file

@ -505,8 +505,7 @@ def main():
dash_installed = _dash_already_configured()
if dash_installed:
print(" Web dashboard is already installed.")
want_dashboard = prompt_yn("Rebuild?", default="y")
want_dashboard = prompt_yn("Web dashboard is already installed. Rebuild Docker image?", default="y")
else:
want_dashboard = prompt_yn("Install the web dashboard?", default="y")
@ -522,7 +521,7 @@ def main():
reuse_config = False
if dash_installed:
reuse_config = prompt_yn(
"Re-use existing configuration? (Keeps SECRET_KEY and SMTP credentials, preserving active sessions and email settings)",
"Re-use existing Docker configuration? (Keeps SECRET_KEY and SMTP credentials, preserving active sessions and email settings)",
default="y"
)