Files
warewulf/internal/app/wwctl/server/status/main.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()
}