plugin: add the plugin

pull/2283/head
Mitchell Hashimoto 11 years ago
parent d5c0f13d8f
commit a0b6928dce

@ -0,0 +1,15 @@
package main
import (
"github.com/mitchellh/packer/packer/plugin"
"github.com/mitchellh/packer/provisioner/shell-local"
)
func main() {
server, err := plugin.Server()
if err != nil {
panic(err)
}
server.RegisterProvisioner(new(shell.Provisioner))
server.Serve()
}
Loading…
Cancel
Save