UI Updates with a few minor fixups scattered here and there
This commit is contained in:
@@ -5,15 +5,18 @@ import "github.com/spf13/cobra"
|
||||
var (
|
||||
baseCmd = &cobra.Command{
|
||||
Use: "tftp",
|
||||
Short: "TFTP configuration",
|
||||
Long: "TFTP Config",
|
||||
RunE: CobraRunE,
|
||||
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,
|
||||
}
|
||||
SetShow bool
|
||||
SetShow bool
|
||||
SetPersist bool
|
||||
)
|
||||
|
||||
func init() {
|
||||
baseCmd.PersistentFlags().BoolVarP(&SetShow, "show", "s", false, "Show configuration (don't update)")
|
||||
baseCmd.PersistentFlags().BoolVar(&SetPersist, "persist", false, "Persist the configuration and initialize the service")
|
||||
}
|
||||
|
||||
// GetRootCommand returns the root cobra.Command for the application.
|
||||
|
||||
Reference in New Issue
Block a user