Merge pull request #9 from YuSungDuk/support_ncloud

fix communicator type : Windows -> winrm
This commit is contained in:
Yu SungDuk 2018-02-07 12:40:11 +09:00 committed by GitHub
commit e97d849c12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe
NewStepDeleteBlockStorageInstance(conn, ui, b.config),
NewStepTerminateServerInstance(conn, ui),
}
} else if b.config.Comm.Type == "Windows" {
} else if b.config.Comm.Type == "winrm" {
steps = []multistep.Step{
NewStepValidateTemplate(conn, ui, b.config),
NewStepCreateLoginKey(conn, ui),