mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-29 02:02:06 -04:00
fix winrmpass sanitization to account for empty string value.
This commit is contained in:
parent
0649c3f7dc
commit
4b9568e409
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue