packer-cn/commands.go

58 lines
1.2 KiB
Go
Raw Normal View History

package main
import (
2017-04-04 16:39:01 -04:00
"github.com/hashicorp/packer/command"
"github.com/mitchellh/cli"
)
2017-01-29 11:31:23 -05:00
// Commands is the mapping of all the available Packer commands.
var Commands map[string]cli.CommandFactory
// CommandMeta is the Meta to use for the commands. This must be written
// before the CLI is started.
var CommandMeta *command.Meta
const ErrorPrefix = "e:"
const OutputPrefix = "o:"
func init() {
Commands = map[string]cli.CommandFactory{
"build": func() (cli.Command, error) {
return &command.BuildCommand{
Meta: *CommandMeta,
}, nil
},
2014-10-27 23:34:49 -04:00
"fix": func() (cli.Command, error) {
return &command.FixCommand{
Meta: *CommandMeta,
2014-10-27 23:34:49 -04:00
}, nil
},
"inspect": func() (cli.Command, error) {
return &command.InspectCommand{
Meta: *CommandMeta,
}, nil
},
"validate": func() (cli.Command, error) {
return &command.ValidateCommand{
Meta: *CommandMeta,
}, nil
},
2014-10-27 23:51:34 -04:00
"version": func() (cli.Command, error) {
return &command.VersionCommand{
Meta: *CommandMeta,
CheckFunc: commandVersionCheck,
2014-10-27 23:51:34 -04:00
}, nil
},
"plugin": func() (cli.Command, error) {
return &command.PluginCommand{
Meta: *CommandMeta,
}, nil
},
}
}