Files
warewulf/internal/app/wwctl/configure/ssh/root.go
2020-12-15 21:29:28 -08:00

24 lines
434 B
Go

package ssh
import "github.com/spf13/cobra"
var (
baseCmd = &cobra.Command{
Use: "ssh",
Short: "SSH configuration",
Long: "SSH Config",
RunE: CobraRunE,
}
SetShow bool
)
func init() {
// baseCmd.PersistentFlags().BoolVarP(&SetShow, "show", "s", false, "Show configuration (don't update)")
}
// GetRootCommand returns the root cobra.Command for the application.
func GetCommand() *cobra.Command {
return baseCmd
}