Merge pull request #21291 from kaorihinata/main

Ensure podman temp directory is created on Start as well.
This commit is contained in:
openshift-merge-bot[bot] 2024-01-19 10:58:53 +00:00 committed by GitHub
commit 815ae77ab2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -572,6 +572,10 @@ func (m *MacMachine) Start(name string, opts machine.StartOptions) error {
return machine.ErrVMAlreadyRunning
}
if _, err := m.getRuntimeDir(); err != nil {
return err
}
// TODO handle returns from startHostNetworking
forwardSock, forwardState, err := m.startHostNetworking()
if err != nil {