Commit 15f215d0 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

go fmt

parent 2efab467
......@@ -16,11 +16,18 @@ import (
)
type config struct {
// Access information
AccessKey string `mapstructure:"access_key"`
AMIName string `mapstructure:"ami_name"`
Region string
SecretKey string `mapstructure:"secret_key"`
// Information for the source AMI
Region string
SourceAmi string `mapstructure:"source_ami"`
SSHUsername string `mapstructure:"ssh_username"`
SSHKeyPath string `mapstructure:"ssh_private_key_path"`
// Configuration of the resulting AMI
AMIName string `mapstructure:"ami_name"`
}
type Builder struct {
......
......@@ -3,8 +3,8 @@ package ssh
import (
"bytes"
"code.google.com/p/go.crypto/ssh"
"github.com/mitchellh/packer/packer"
"fmt"
"github.com/mitchellh/packer/packer"
"net"
"strings"
"testing"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment