diff --git a/builder/vmware/builder.go b/builder/vmware/builder.go index e9677557e..bbc044de0 100644 --- a/builder/vmware/builder.go +++ b/builder/vmware/builder.go @@ -26,7 +26,7 @@ type Builder struct { type config struct { DiskName string `mapstructure:"vmdk_name"` - DiskSize uint `mapstructure:"disk_size"` + DiskSize uint `mapstructure:"disk_size"` GuestOSType string `mapstructure:"guest_os_type"` ISOMD5 string `mapstructure:"iso_md5"` ISOUrl string `mapstructure:"iso_url"` diff --git a/communicator/ssh/communicator.go b/communicator/ssh/communicator.go index 96e4a9ea4..cc5097777 100644 --- a/communicator/ssh/communicator.go +++ b/communicator/ssh/communicator.go @@ -36,7 +36,7 @@ func (c *comm) Start(cmd *packer.RemoteCmd) (err error) { // Request a PTY 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_OSPEED: 14400, // output speed = 14.4kbaud }