Files
warewulf/internal/app/wwctl/server/start/main.go
2020-12-12 23:50:38 -08:00

12 lines
198 B
Go

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