11 lines
199 B
Go
11 lines
199 B
Go
package status
|
|
|
|
import (
|
|
"github.com/hpcng/warewulf/internal/pkg/warewulfd"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func CobraRunE(cmd *cobra.Command, args []string) error {
|
|
return warewulfd.DaemonStatus()
|
|
}
|