This commit is contained in:
Mitchell Hashimoto 2013-06-23 20:43:50 -07:00
parent fb139b2925
commit 2ac81bfc4d
2 changed files with 2 additions and 2 deletions

View File

@ -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"`

View File

@ -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
}