post-processor: Recognize the virtualbox builder

This commit is contained in:
Mitchell Hashimoto 2013-06-27 07:39:11 -07:00
parent e44fa1ab90
commit e5e002138a
1 changed files with 4 additions and 1 deletions

View File

@ -11,7 +11,8 @@ import (
)
var builtins = map[string]string{
"mitchellh.amazonebs": "aws",
"mitchellh.amazonebs": "aws",
"mitchellh.virtualbox": "virtualbox",
}
type Config struct {
@ -89,6 +90,8 @@ func keyToPostProcessor(key string) packer.PostProcessor {
switch key {
case "aws":
return new(AWSBoxPostProcessor)
case "virtualbox":
return new(VBoxBoxPostProcessor)
default:
return nil
}