From: Tom Clegg Date: Tue, 19 Jul 2022 21:35:49 +0000 (-0400) Subject: 17344: Point to diagnostics and docs after successful init. X-Git-Tag: 2.5.0~115^2~5 X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/a4fc0df348d192c2b147d4964c0dfa4079e2181f 17344: Point to diagnostics and docs after successful init. Arvados-DCO-1.1-Signed-off-by: Tom Clegg --- diff --git a/lib/install/init.go b/lib/install/init.go index 2992b6677e..14e2eaafab 100644 --- a/lib/install/init.go +++ b/lib/install/init.go @@ -392,7 +392,12 @@ func (initcmd *initCommand) RunCommand(prog string, args []string, stdin io.Read fmt.Fprintln(stderr, "docker is not installed -- skipping step of downloading 'alpine' image") } - fmt.Fprintln(stderr, "Setup complete. You should now be able to log in to workbench2 at", cluster.Services.Workbench2.ExternalURL.String()) + fmt.Fprintf(stderr, ` +Setup complete. Next steps: +* run 'arv sudo diagnostics' +* log in to workbench2 at %s +* see documentation at https://doc.arvados.org/install/automatic.html +`, cluster.Services.Workbench2.ExternalURL.String()) return 0 }