12 lines
200 B
Go
12 lines
200 B
Go
package stop
|
|
|
|
import (
|
|
"github.com/hpcng/warewulf/internal/pkg/warewulfd"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func CobraRunE(cmd *cobra.Command, args []string) error {
|
|
warewulfd.DaemonStop()
|
|
return nil
|
|
}
|