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