mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00
Prevent simultaneous machine starts
Running `podman machine start` twice at the same time in different terminals, for example, will make the second invocation fail and the first one hang. [NO NEW TESTS NEEDED] Signed-off-by: Shane Smith <shane.smith@shopify.com>
This commit is contained in:
@ -480,6 +480,10 @@ func (v *MachineVM) Start(name string, _ machine.StartOptions) error {
|
||||
wait = time.Millisecond * 500
|
||||
)
|
||||
|
||||
if v.Starting {
|
||||
return fmt.Errorf("machine %q is already in the process of being started", v.Name)
|
||||
}
|
||||
|
||||
v.Starting = true
|
||||
if err := v.writeConfig(); err != nil {
|
||||
return fmt.Errorf("writing JSON file: %w", err)
|
||||
|
Reference in New Issue
Block a user