You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/cmd/search_cmd_linux.go

51 lines
1.4 KiB

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package cmd
import (
"github.com/hashicorp/boundary/internal/clientcache/cmd/daemon"
"github.com/hashicorp/boundary/internal/clientcache/cmd/search"
"github.com/hashicorp/boundary/internal/cmd/base"
"github.com/mitchellh/cli"
)
func init() {
clientCacheWrapper = daemonWrap
extraCommandsFuncs = append(extraCommandsFuncs, func(ui, serverCmdUi cli.Ui, runOpts *RunOptions) {
delete(Commands, "daemon")
Commands["daemon start"] = func() (cli.Command, error) {
return &daemon.StartCommand{
Command: base.NewCommand(ui),
}, nil
}
Commands["daemon stop"] = func() (cli.Command, error) {
return &daemon.StopCommand{
Command: base.NewCommand(ui),
}, nil
}
Commands["daemon add-token"] = func() (cli.Command, error) {
return &daemon.AddTokenCommand{
Command: base.NewCommand(ui),
}, nil
}
Commands["daemon status"] = func() (cli.Command, error) {
return &daemon.StatusCommand{
Command: base.NewCommand(ui),
}, nil
}
Commands["search"] = func() (cli.Command, error) {
return &search.SearchCommand{
Command: base.NewCommand(ui),
}, nil
}
})
}
// daemonWrap wraps the provided cacheEnabledCommand with a daemon writer which
// conditionally starts the client side daemon after the command completes
func daemonWrap(c cacheEnabledCommand) cli.CommandFactory {
return daemon.Wrap(c)
}