Files
warewulf/internal/app/wwctl/server/start/main.go
2021-09-07 20:48:51 -07:00

15 lines
262 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 {
return warewulfd.RunServer()
} else {
return warewulfd.DaemonStart()
}
}