Moved warewulfd commandline program into wwctl

This commit is contained in:
Gregory Kurtzer
2020-12-11 23:30:29 -08:00
parent c53c97dbcf
commit 90246f227f
16 changed files with 60 additions and 93 deletions

View File

@@ -1,8 +1,11 @@
package start
import "github.com/spf13/cobra"
import (
"github.com/hpcng/warewulf/internal/pkg/warewulfd"
"github.com/spf13/cobra"
)
func CobraRunE(cmd *cobra.Command, args []string) error {
return nil
return warewulfd.RunServer()
}