Merge pull request #8570 from hashicorp/fix_ansible_winrm
fix winrmpass sanitization to account for empty string value.
This commit is contained in:
commit
e525d2bd6e
|
@ -495,7 +495,7 @@ func (p *Provisioner) executeAnsible(ui packer.Ui, comm packer.Communicator, pri
|
|||
flattenedCmd := strings.Join(cmd.Args, " ")
|
||||
sanitized := flattenedCmd
|
||||
winRMPass, ok := p.generatedData["WinRMPassword"]
|
||||
if ok {
|
||||
if ok && winRMPass != "" {
|
||||
sanitized = strings.Replace(sanitized,
|
||||
winRMPass.(string), "*****", -1)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue