Commit 1c380ea5 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

Checkpoint

(configs to disable will come next)
parent a8c4bb44
......@@ -10,6 +10,7 @@ import (
"path/filepath"
"runtime"
"github.com/hashicorp/go-checkpoint"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer/plugin"
"github.com/mitchellh/panicwrap"
......@@ -92,9 +93,26 @@ func wrappedMain() int {
fmt.Fprintf(os.Stderr, "Error loading configuration: \n\n%s\n", err)
return 1
}
log.Printf("Packer config: %+v", config)
configDir, err := ConfigDir()
if err != nil {
fmt.Fprintf(os.Stderr, "Error loading config dir: \n\n%s\n", err)
return 1
}
// Fire off the checkpoint.
version := packer.Version
if packer.VersionPrerelease != "" {
version += fmt.Sprintf(".%s", packer.VersionPrerelease)
}
go checkpoint.Check(&checkpoint.CheckParams{
Product: "packer",
Version: version,
SignatureFile: filepath.Join(configDir, "checkpoint_signature"),
CacheFile: filepath.Join(configDir, "checkpoint_cache"),
})
cacheDir := os.Getenv("PACKER_CACHE_DIR")
if cacheDir == "" {
cacheDir = "packer_cache"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment