Files

143 lines
3.2 KiB
Go
Raw Permalink Normal View History

// Copyright (c) HashiCorp, Inc.
2023-08-10 15:53:29 -07:00
// SPDX-License-Identifier: BUSL-1.1
package main
import (
2017-04-04 13:39:01 -07:00
"github.com/hashicorp/packer/command"
"github.com/mitchellh/cli"
)
2017-01-29 16:31:23 +00:00
// Commands is the mapping of all the available Packer commands.
var Commands map[string]cli.CommandFactory
2015-05-27 20:09:52 -07:00
// 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) {
2020-11-11 11:49:39 -05:00
return &command.BuildCommand{Meta: *CommandMeta}, nil
},
"console": func() (cli.Command, error) {
return &command.ConsoleCommand{
Meta: *CommandMeta,
}, nil
},
2024-03-05 10:28:28 -05:00
"execute": func() (cli.Command, error) {
return &command.ExecuteCommand{
Meta: *CommandMeta,
}, nil
},
2014-10-27 20:34:49 -07:00
"fix": func() (cli.Command, error) {
return &command.FixCommand{
2015-05-27 20:09:52 -07:00
Meta: *CommandMeta,
2014-10-27 20:34:49 -07:00
}, nil
},
2020-11-11 11:49:39 -05:00
"fmt": func() (cli.Command, error) {
return &command.FormatCommand{
Meta: *CommandMeta,
}, nil
},
"hcl2_upgrade": func() (cli.Command, error) {
return &command.HCL2UpgradeCommand{
Meta: *CommandMeta,
}, nil
},
"init": func() (cli.Command, error) {
return &command.InitCommand{
Meta: *CommandMeta,
}, nil
},
"inspect": func() (cli.Command, error) {
return &command.InspectCommand{
2015-05-27 20:09:52 -07:00
Meta: *CommandMeta,
}, nil
},
"plugins": func() (cli.Command, error) {
return &command.PluginsCommand{
Meta: *CommandMeta,
}, nil
},
"plugins installed": func() (cli.Command, error) {
return &command.PluginsInstalledCommand{
Meta: *CommandMeta,
}, nil
},
"plugins install": func() (cli.Command, error) {
return &command.PluginsInstallCommand{
Meta: *CommandMeta,
}, nil
},
"plugins remove": func() (cli.Command, error) {
return &command.PluginsRemoveCommand{
Meta: *CommandMeta,
}, nil
},
"plugins required": func() (cli.Command, error) {
return &command.PluginsRequiredCommand{
Meta: *CommandMeta,
}, nil
},
"validate": func() (cli.Command, error) {
return &command.ValidateCommand{
2015-05-27 20:09:52 -07:00
Meta: *CommandMeta,
}, nil
},
2014-10-27 20:51:34 -07:00
"version": func() (cli.Command, error) {
return &command.VersionCommand{
Meta: *CommandMeta,
CheckFunc: commandVersionCheck,
2014-10-27 20:51:34 -07:00
}, nil
},
// plugin is essentially an alias to the plugins command
//
// It is not meant to be documented or used outside of simple
// typos, as it's easy to write plugin instead of plugins, so
// we opted not to error, but silently alias the two writings.
"plugin": func() (cli.Command, error) {
return &command.PluginsCommand{
Meta: *CommandMeta,
}, nil
},
"plugin installed": func() (cli.Command, error) {
return &command.PluginsInstalledCommand{
Meta: *CommandMeta,
}, nil
},
"plugin install": func() (cli.Command, error) {
return &command.PluginsInstallCommand{
Meta: *CommandMeta,
}, nil
},
"plugin remove": func() (cli.Command, error) {
return &command.PluginsRemoveCommand{
Meta: *CommandMeta,
}, nil
},
"plugin required": func() (cli.Command, error) {
return &command.PluginsRequiredCommand{
Meta: *CommandMeta,
}, nil
},
}
}