Files
warewulf/internal/app/wwctl/configure/hosts/main.go
2022-02-11 17:42:26 +00:00

11 lines
211 B
Go

package hosts
import (
"github.com/hpcng/warewulf/internal/pkg/configure"
"github.com/spf13/cobra"
)
func CobraRunE(cmd *cobra.Command, args []string) error {
return configure.Configure("hosts", setShow)
}