Commit 53b7b396 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

fmt

parent 72741dbe
...@@ -26,7 +26,7 @@ type Builder struct { ...@@ -26,7 +26,7 @@ type Builder struct {
type config struct { type config struct {
DiskName string `mapstructure:"vmdk_name"` DiskName string `mapstructure:"vmdk_name"`
DiskSize uint `mapstructure:"disk_size"` DiskSize uint `mapstructure:"disk_size"`
GuestOSType string `mapstructure:"guest_os_type"` GuestOSType string `mapstructure:"guest_os_type"`
ISOMD5 string `mapstructure:"iso_md5"` ISOMD5 string `mapstructure:"iso_md5"`
ISOUrl string `mapstructure:"iso_url"` ISOUrl string `mapstructure:"iso_url"`
......
...@@ -36,7 +36,7 @@ func (c *comm) Start(cmd *packer.RemoteCmd) (err error) { ...@@ -36,7 +36,7 @@ func (c *comm) Start(cmd *packer.RemoteCmd) (err error) {
// Request a PTY // Request a PTY
termModes := ssh.TerminalModes{ termModes := ssh.TerminalModes{
ssh.ECHO: 0, // do not echo ssh.ECHO: 0, // do not echo
ssh.TTY_OP_ISPEED: 14400, // input speed = 14.4kbaud ssh.TTY_OP_ISPEED: 14400, // input speed = 14.4kbaud
ssh.TTY_OP_OSPEED: 14400, // output speed = 14.4kbaud ssh.TTY_OP_OSPEED: 14400, // output speed = 14.4kbaud
} }
......
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