summaryrefslogtreecommitdiff
path: root/vendor/github.com/mitchellh/packer/plugin/builder-lxc/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mitchellh/packer/plugin/builder-lxc/main.go')
-rw-r--r--vendor/github.com/mitchellh/packer/plugin/builder-lxc/main.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/github.com/mitchellh/packer/plugin/builder-lxc/main.go b/vendor/github.com/mitchellh/packer/plugin/builder-lxc/main.go
new file mode 100644
index 00000000..0329b8c8
--- /dev/null
+++ b/vendor/github.com/mitchellh/packer/plugin/builder-lxc/main.go
@@ -0,0 +1,15 @@
+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()
+}