mirror of https://github.com/hashicorp/packer
parent
91c1434764
commit
b358574636
@ -1,4 +1,4 @@
|
||||
package amazonebs
|
||||
package ebs
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
@ -1,4 +1,4 @@
|
||||
package amazonebs
|
||||
package ebs
|
||||
|
||||
import (
|
||||
"cgl.tideland.biz/asserts"
|
||||
@ -1,4 +1,4 @@
|
||||
package amazonebs
|
||||
package ebs
|
||||
|
||||
import (
|
||||
"github.com/mitchellh/packer/packer"
|
||||
@ -1,4 +1,4 @@
|
||||
package amazonebs
|
||||
package ebs
|
||||
|
||||
// This hook is fired prior to launching the EC2 instance.
|
||||
const HookPreLaunch = "amazonebs_pre_launch"
|
||||
@ -1,4 +1,4 @@
|
||||
package amazonebs
|
||||
package ebs
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
@ -1,4 +1,4 @@
|
||||
package amazonebs
|
||||
package ebs
|
||||
|
||||
import (
|
||||
gossh "code.google.com/p/go.crypto/ssh"
|
||||
@ -1,4 +1,4 @@
|
||||
package amazonebs
|
||||
package ebs
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
@ -1,4 +1,4 @@
|
||||
package amazonebs
|
||||
package ebs
|
||||
|
||||
import (
|
||||
"cgl.tideland.biz/identifier"
|
||||
@ -1,4 +1,4 @@
|
||||
package amazonebs
|
||||
package ebs
|
||||
|
||||
import (
|
||||
"github.com/mitchellh/multistep"
|
||||
@ -1,4 +1,4 @@
|
||||
package amazonebs
|
||||
package ebs
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
@ -1,4 +1,4 @@
|
||||
package amazonebs
|
||||
package ebs
|
||||
|
||||
import (
|
||||
"cgl.tideland.biz/identifier"
|
||||
@ -1,4 +1,4 @@
|
||||
package amazonebs
|
||||
package ebs
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
@ -1,10 +1,10 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"github.com/mitchellh/packer/builder/amazonebs"
|
||||
"github.com/mitchellh/packer/builder/amazon/ebs"
|
||||
"github.com/mitchellh/packer/packer/plugin"
|
||||
)
|
||||
|
||||
func main() {
|
||||
plugin.ServeBuilder(new(amazonebs.Builder))
|
||||
plugin.ServeBuilder(new(ebs.Builder))
|
||||
}
|
||||
|
||||
Loading…
Reference in new issue