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 (
|
2013-06-09 01:26:49 -04:00
|
|
|
"bytes"
|
2013-05-10 20:01:24 -04:00
|
|
|
"fmt"
|
2013-03-25 19:29:26 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
2013-05-07 14:50:42 -04:00
|
|
|
"github.com/mitchellh/packer/packer/plugin"
|
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-05-08 23:56:44 -04:00
|
|
|
"os/user"
|
2013-06-09 01:26:49 -04:00
|
|
|
"path/filepath"
|
2013-05-08 21:30:39 -04:00
|
|
|
"runtime"
|
2013-03-25 19:29:26 -04:00
|
|
|
)
|
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 21:30:39 -04:00
|
|
|
// If there is no explicit number of Go threads to use, then set it
|
|
|
|
if os.Getenv("GOMAXPROCS") == "" {
|
|
|
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
|
|
|
}
|
|
|
|
|
2013-06-09 01:26:49 -04:00
|
|
|
config, err := loadConfig()
|
2013-05-08 21:13:15 -04:00
|
|
|
if err != nil {
|
2013-06-09 01:26:49 -04:00
|
|
|
fmt.Fprintf(os.Stderr, "Error loading configuration: \n\n%s\n", err)
|
2013-05-08 21:13:15 -04:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2013-06-09 01:26:49 -04:00
|
|
|
log.Printf("Packer config: %+v", config)
|
2013-05-08 23:56:44 -04:00
|
|
|
|
2013-06-09 01:26:49 -04:00
|
|
|
defer plugin.CleanupClients()
|
2013-05-08 23:56:44 -04:00
|
|
|
|
2013-06-10 00:28:32 -04:00
|
|
|
var cache packer.Cache
|
|
|
|
if cacheDir := os.Getenv("PACKER_CACHE_DIR"); cacheDir != "" {
|
|
|
|
if err := os.MkdirAll(cacheDir, 0755); err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "Error preparing cache directory: \n\n%s\n", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("Setting cache directory: %s", cacheDir)
|
|
|
|
cache = &packer.FileCache{CacheDir: cacheDir}
|
|
|
|
}
|
|
|
|
|
2013-04-21 22:04:35 -04:00
|
|
|
envConfig := packer.DefaultEnvironmentConfig()
|
2013-06-10 00:28:32 -04:00
|
|
|
envConfig.Cache = cache
|
2013-05-08 21:13:15 -04:00
|
|
|
envConfig.Commands = config.CommandNames()
|
2013-05-11 02:15:13 -04:00
|
|
|
envConfig.Components.Builder = config.LoadBuilder
|
|
|
|
envConfig.Components.Command = config.LoadCommand
|
2013-05-11 14:11:40 -04:00
|
|
|
envConfig.Components.Hook = config.LoadHook
|
2013-05-24 00:37:25 -04:00
|
|
|
envConfig.Components.Provisioner = config.LoadProvisioner
|
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-06-04 01:40:05 -04:00
|
|
|
setupSignalHandlers(env)
|
|
|
|
|
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
|
|
|
}
|
2013-06-09 01:26:49 -04:00
|
|
|
|
|
|
|
func loadConfig() (*config, error) {
|
|
|
|
var config config
|
|
|
|
if err := decodeConfig(bytes.NewBufferString(defaultConfig), &config); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
mustExist := true
|
|
|
|
configFile := os.Getenv("PACKER_CONFIG")
|
|
|
|
if configFile == "" {
|
|
|
|
u, err := user.Current()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
configFile = filepath.Join(u.HomeDir, ".packerrc")
|
|
|
|
mustExist = false
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("Attempting to open config file: %s", configFile)
|
|
|
|
f, err := os.Open(configFile)
|
|
|
|
if err != nil {
|
|
|
|
if !os.IsNotExist(err) {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if mustExist {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Println("File doesn't exist, but doesn't need to. Ignoring.")
|
|
|
|
return &config, nil
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
if err := decodeConfig(f, &config); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &config, nil
|
|
|
|
}
|