This change adds base support for an openstack builder. Thank you to Rackspace for providing cloud assets to complete this work and @sam-falvo for working with us on the perigee/gophercloud changes.
11 lines
181 B
Go
11 lines
181 B
Go
package main
|
|
|
|
import (
|
|
"github.com/mitchellh/packer/builder/openstack"
|
|
"github.com/mitchellh/packer/packer/plugin"
|
|
)
|
|
|
|
func main() {
|
|
plugin.ServeBuilder(new(openstack.Builder))
|
|
}
|