12 lines
198 B
Go
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()
|
|
}
|