mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-26 18:44:47 +01:00
sandbox: remove network before stopping vm
We might need to call hypervisor hotunplug to really remove a network device. We cannot do it after stopping the VM. Fixes: #1956 Signed-off-by: Peng Tao <bergwolf@hyper.sh>
This commit is contained in:
@@ -1473,6 +1473,11 @@ func (s *Sandbox) Stop(force bool) error {
|
||||
}
|
||||
}
|
||||
|
||||
// Remove the network.
|
||||
if err := s.removeNetwork(); err != nil && !force {
|
||||
return err
|
||||
}
|
||||
|
||||
if err := s.stopVM(); err != nil && !force {
|
||||
return err
|
||||
}
|
||||
@@ -1481,11 +1486,6 @@ func (s *Sandbox) Stop(force bool) error {
|
||||
return err
|
||||
}
|
||||
|
||||
// Remove the network.
|
||||
if err := s.removeNetwork(); err != nil && !force {
|
||||
return err
|
||||
}
|
||||
|
||||
if err := s.storeSandbox(); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user