This commit is contained in:
Mitchell Hashimoto 2013-06-15 11:07:30 -07:00
parent 03d7a7f6b5
commit 3983edb1a3
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ type config struct {
// Configuration of the resulting AMI // Configuration of the resulting AMI
AMIName string `mapstructure:"ami_name"` AMIName string `mapstructure:"ami_name"`
PackerDebug bool `mapstructure:"packer_debug"` PackerDebug bool `mapstructure:"packer_debug"`
RawSSHTimeout string `mapstructure:"ssh_timeout"` RawSSHTimeout string `mapstructure:"ssh_timeout"`
} }

View File

@ -1,8 +1,8 @@
package main package main
import ( import (
"github.com/mitchellh/packer/packer/plugin"
"github.com/mitchellh/packer/builder/digitalocean" "github.com/mitchellh/packer/builder/digitalocean"
"github.com/mitchellh/packer/packer/plugin"
) )
func main() { func main() {