Rollback stopping management client within engine stop (#204)

* start close handler when using console

* don't close management client within engine stop
This commit is contained in:
Maycon Santos
2022-01-25 11:18:01 +01:00
committed by GitHub
parent 0739038d51
commit 98dc5824ce
3 changed files with 8 additions and 8 deletions

View File

@ -22,11 +22,13 @@ var (
Short: "install, login and start wiretrustee client",
RunE: func(cmd *cobra.Command, args []string) error {
SetFlagsFromEnvVars()
err := loginCmd.RunE(cmd, args)
if err != nil {
return err
}
if logFile == "console" {
SetupCloseHandler()
return runClient()
}