packer-cn/plugin/post-processor-vagrant/main.go

16 lines
280 B
Go
Raw Normal View History

2013-06-26 20:37:46 -04:00
package main
import (
"github.com/mitchellh/packer/packer/plugin"
"github.com/mitchellh/packer/post-processor/vagrant"
)
func main() {
2013-12-10 16:59:38 -05:00
server, err := plugin.Server()
if err != nil {
panic(err)
}
server.RegisterPostProcessor(new(vagrant.PostProcessor))
server.Serve()
2013-06-26 20:37:46 -04:00
}