wwctl completions for no args

Signed-off-by: Jonathon Anderson <janderson@ciq.com>
This commit is contained in:
Jonathon Anderson
2025-02-09 15:28:30 -07:00
parent 760b6e5217
commit 65f85a00a3
11 changed files with 67 additions and 35 deletions

View File

@@ -1,6 +1,9 @@
package tftp
import "github.com/spf13/cobra"
import (
"github.com/spf13/cobra"
"github.com/warewulf/warewulf/internal/app/wwctl/completions"
)
var (
baseCmd = &cobra.Command{
@@ -9,8 +12,9 @@ var (
Short: "Manage and initialize TFTP",
Long: "TFTP is a dependent service of Warewulf, this tool will enable the tftp services\n" +
"on your Warewulf master.",
RunE: CobraRunE,
Args: cobra.ExactArgs(0),
RunE: CobraRunE,
Args: cobra.NoArgs,
ValidArgsFunction: completions.None,
}
setShow bool
)