2013-03-23 02:00:23 -04:00
|
|
|
// This is the main package for the `packer` application.
|
|
|
|
package main
|
|
|
|
|
2013-03-25 19:29:26 -04:00
|
|
|
import (
|
|
|
|
"github.com/mitchellh/packer/packer"
|
2013-05-07 14:50:42 -04:00
|
|
|
"github.com/mitchellh/packer/packer/plugin"
|
2013-04-20 21:00:03 -04:00
|
|
|
"fmt"
|
2013-05-08 17:45:17 -04:00
|
|
|
"io/ioutil"
|
2013-05-08 12:46:37 -04:00
|
|
|
"log"
|
2013-03-25 19:29:26 -04:00
|
|
|
"os"
|
|
|
|
)
|
2013-03-23 21:40:26 -04:00
|
|
|
|
2013-03-23 02:00:23 -04:00
|
|
|
func main() {
|
2013-05-08 17:45:17 -04:00
|
|
|
if os.Getenv("PACKER_LOG") == "" {
|
|
|
|
// If we don't have logging explicitly enabled, then disable it
|
|
|
|
log.SetOutput(ioutil.Discard)
|
|
|
|
} else {
|
|
|
|
// Logging is enabled, make sure it goes to stderr
|
|
|
|
log.SetOutput(os.Stderr)
|
|
|
|
}
|
|
|
|
|
2013-05-08 16:06:57 -04:00
|
|
|
defer plugin.CleanupClients()
|
|
|
|
|
2013-05-08 21:13:15 -04:00
|
|
|
config, err := parseConfig(defaultConfig)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "Error loading global Packer configuration: \n\n%s\n", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2013-04-21 22:04:35 -04:00
|
|
|
envConfig := packer.DefaultEnvironmentConfig()
|
2013-05-08 21:13:15 -04:00
|
|
|
envConfig.Commands = config.CommandNames()
|
2013-05-08 20:28:05 -04:00
|
|
|
envConfig.CommandFunc = config.LoadCommand
|
2013-04-21 22:04:35 -04:00
|
|
|
|
|
|
|
env, err := packer.NewEnvironment(envConfig)
|
2013-04-20 21:00:03 -04:00
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "Packer initialization error: \n\n%s\n", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2013-05-08 17:53:20 -04:00
|
|
|
exitCode, err := env.Cli(os.Args[1:])
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "Error executing CLI: %s\n", err.Error())
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2013-05-08 14:54:59 -04:00
|
|
|
plugin.CleanupClients()
|
2013-05-08 02:09:34 -04:00
|
|
|
os.Exit(exitCode)
|
2013-03-23 02:00:23 -04:00
|
|
|
}
|