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

12 lines
263 B
Go

package status
import (
"github.com/hpcng/warewulf/internal/pkg/warewulfd"
"github.com/pkg/errors"
"github.com/spf13/cobra"
)
func CobraRunE(cmd *cobra.Command, args []string) error {
return errors.Wrap(warewulfd.DaemonStatus(), "failed to start daemon")
}