17344: Point to diagnostics and docs after successful init.
authorTom Clegg <tom@curii.com>
Tue, 19 Jul 2022 21:35:49 +0000 (17:35 -0400)
committerTom Clegg <tom@curii.com>
Tue, 19 Jul 2022 21:35:49 +0000 (17:35 -0400)
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom@curii.com>

lib/install/init.go

index 2992b6677e78c8f5154510787aeb7e6461205601..14e2eaafab85079876f32bccf9de110fdd4f6373 100644 (file)
@@ -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
 }