Files
Packer-Cn/plugin/post-processor-shell-local/main.go
T

16 lines
288 B
Go
Raw Normal View History

2015-09-02 11:29:26 +01:00
package main
import (
"github.com/mitchellh/packer/packer/plugin"
2016-02-08 17:34:06 -08:00
"github.com/mitchellh/packer/post-processor/shell-local"
2015-09-02 11:29:26 +01:00
)
func main() {
server, err := plugin.Server()
if err != nil {
panic(err)
}
server.RegisterPostProcessor(new(shell_local.PostProcessor))
server.Serve()
}