Files
warewulf/internal/app/wwctl/server/start/main.go
2021-01-14 20:23:42 -08:00

16 lines
271 B
Go

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