Merge pull request #5402 from hashicorp/lxc_cleanup

delete unneeded plugin file
This commit is contained in:
Matthew Hooker 2017-09-28 11:33:18 -07:00 committed by GitHub
commit 3998a07086
1 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
package main
import (
"github.com/hashicorp/packer/builder/lxc"
"github.com/hashicorp/packer/packer/plugin"
)
func main() {
server, err := plugin.Server()
if err != nil {
panic(err)
}
server.RegisterBuilder(new(lxc.Builder))
server.Serve()
}