Warewulf is now being maintained in its own GitHub organization at github.com/warewulf Signed-off-by: Jonathon Anderson <janderson@ciq.com>
52 lines
1.7 KiB
Go
52 lines
1.7 KiB
Go
package show
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/warewulf/warewulf/internal/pkg/node"
|
|
"github.com/warewulf/warewulf/internal/pkg/overlay"
|
|
)
|
|
|
|
var (
|
|
baseCmd = &cobra.Command{
|
|
DisableFlagsInUseLine: true,
|
|
Use: "show [OPTIONS] OVERLAY_NAME FILE",
|
|
Short: "Show (cat) a file within a Warewulf Overlay",
|
|
Long: "This command displays the contents of FILE within OVERLAY_NAME.",
|
|
RunE: CobraRunE,
|
|
Aliases: []string{"cat"},
|
|
Args: cobra.ExactArgs(2),
|
|
ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
|
|
if len(args) == 0 {
|
|
list, _ := overlay.FindOverlays()
|
|
return list, cobra.ShellCompDirectiveNoFileComp
|
|
} else if len(args) == 1 {
|
|
ret, err := overlay.OverlayGetFiles(args[0])
|
|
if err == nil {
|
|
return ret, cobra.ShellCompDirectiveNoFileComp
|
|
}
|
|
}
|
|
return []string{""}, cobra.ShellCompDirectiveNoFileComp
|
|
},
|
|
}
|
|
NodeName string
|
|
Quiet bool
|
|
)
|
|
|
|
func init() {
|
|
baseCmd.PersistentFlags().StringVarP(&NodeName, "render", "r", "", "node used for the variables in the template")
|
|
if err := baseCmd.RegisterFlagCompletionFunc("render", func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
|
|
nodeDB, _ := node.New()
|
|
return nodeDB.NodeList(), cobra.ShellCompDirectiveNoFileComp
|
|
}); err != nil {
|
|
log.Println(err)
|
|
}
|
|
baseCmd.PersistentFlags().BoolVarP(&Quiet, "quiet", "q", false, "do not print information if multiple, backup files are written")
|
|
}
|
|
|
|
// GetRootCommand returns the root cobra.Command for the application.
|
|
func GetCommand() *cobra.Command {
|
|
return baseCmd
|
|
}
|