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: "hosts",
|
||||
Short: "NFS configuration",
|
||||
Long: "NFS Config",
|
||||
RunE: CobraRunE,
|
||||
Short: "Update the /etc/hosts file",
|
||||
Long: "Write out the /etc/hosts file based on the Warewulf template (hosts.tmpl) in the\n" +
|
||||
"Warewulf configuration directory.",
|
||||
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(&SetShow, "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