mirror of
https://github.com/hashicorp/packer.git
synced 2026-06-09 00:32:09 -04:00
builder/virtualbox: paused is still running
This commit is contained in:
parent
dbad270d27
commit
2ad30e1ea1
1 changed files with 6 additions and 0 deletions
|
|
@ -59,6 +59,12 @@ func (d *VBox42Driver) IsRunning(name string) (bool, error) {
|
|||
if line == `VMState="stopping"` {
|
||||
return true, nil
|
||||
}
|
||||
|
||||
// We consider "paused" to still be running. We wait for it to
|
||||
// be completely stopped or some other state.
|
||||
if line == `VMState="paused"` {
|
||||
return true, nil
|
||||
}
|
||||
}
|
||||
|
||||
return false, nil
|
||||
|
|
|
|||
Loading…
Reference in a new issue