2020-04-21 18:55:31 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
|
|
|
type LicenseGetCommand struct {
|
|
|
|
Meta
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *LicenseGetCommand) Help() string {
|
|
|
|
helpText := `
|
2020-04-22 13:42:25 +00:00
|
|
|
Usage: nomad license get [options]
|
2020-04-21 18:55:31 +00:00
|
|
|
|
|
|
|
Gets a new license in Servers and Clients
|
|
|
|
General Options:
|
|
|
|
|
2020-04-22 14:19:51 +00:00
|
|
|
` + generalOptionsUsage()
|
2020-04-21 18:55:31 +00:00
|
|
|
|
|
|
|
return helpText
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *LicenseGetCommand) Synopsis() string {
|
2020-06-23 16:47:39 +00:00
|
|
|
return "Retrieve the current Nomad Enterprise License"
|
2020-04-21 18:55:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *LicenseGetCommand) Name() string { return "license get" }
|
|
|
|
|
|
|
|
func (c *LicenseGetCommand) Run(args []string) int {
|
|
|
|
flags := c.Meta.FlagSet(c.Name(), FlagSetClient)
|
|
|
|
flags.Usage = func() { c.Ui.Output(c.Help()) }
|
|
|
|
|
2020-04-22 13:42:25 +00:00
|
|
|
if err := flags.Parse(args); err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error parsing flags: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2020-04-21 18:55:31 +00:00
|
|
|
client, err := c.Meta.Client()
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error initializing client: %s", err))
|
2020-04-22 13:42:25 +00:00
|
|
|
return 1
|
2020-04-21 18:55:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
resp, _, err := client.Operator().LicenseGet(nil)
|
|
|
|
if err != nil {
|
2020-04-22 13:42:25 +00:00
|
|
|
c.Ui.Error(fmt.Sprintf("Error getting license: %v", err))
|
|
|
|
return 1
|
2020-04-21 18:55:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return OutputLicenseReply(c.Ui, resp)
|
|
|
|
}
|