Files
warewulf/internal/app/wwctl/server/reload/main.go

12 lines
273 B
Go

package reload
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.DaemonReload(), "failed to reload Warewulf server")
}