From c669621bd3f275a864fb7f7444697d837d1016d3 Mon Sep 17 00:00:00 2001 From: "Greg T. Wallace" Date: Tue, 18 Jun 2024 21:30:38 -0400 Subject: [PATCH] install: add ssh connect log message --- pkg/app/cmd_install.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/app/cmd_install.go b/pkg/app/cmd_install.go index fa310b7..b02d112 100644 --- a/pkg/app/cmd_install.go +++ b/pkg/app/cmd_install.go @@ -66,6 +66,7 @@ func (app *app) cmdInstall(cmdCtx context.Context, args []string) error { if err != nil { return fmt.Errorf("install: failed to connect to host (%w)", err) } + app.stdLogger.Println("install: connected to ups ssh, installing ssl key and cert...") // install SSL Cert err = client.InstallSSLCert(keyP15, certPem, keyCertP15)