diff --git a/CHANGELOG.md b/CHANGELOG.md index c5ecbc4d6..b5897b1aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ BACKWARDS INCOMPATIBILITIES: FEATURES: + * **New Post-Processor: `compress`** - Gzip compresses artifacts with files. * **New Post-Processor: `docker-save`** - Save an image. This is similar to export, but preserves the image hierarchy. * **New Post-Processor: `docker-tag`** - Tag a created image. diff --git a/post-processor/compress/artifact.go b/post-processor/compress/artifact.go index bc0128d86..54985d529 100644 --- a/post-processor/compress/artifact.go +++ b/post-processor/compress/artifact.go @@ -5,7 +5,7 @@ import ( "os" ) -const BuilderId = "johnbellone.compress" +const BuilderId = "packer.post-processor.compress" type Artifact struct { Path string diff --git a/post-processor/compress/post-processor.go b/post-processor/compress/post-processor.go index 2dc5e6d94..003afd2a9 100644 --- a/post-processor/compress/post-processor.go +++ b/post-processor/compress/post-processor.go @@ -4,10 +4,11 @@ import ( "archive/tar" "compress/gzip" "fmt" - "github.com/mitchellh/packer/common" - "github.com/mitchellh/packer/packer" "io" "os" + + "github.com/mitchellh/packer/common" + "github.com/mitchellh/packer/packer" ) type Config struct {