mirror of
https://github.com/rancher/plugins.git
synced 2025-07-09 05:04:51 +00:00
8 lines
242 B
Go
8 lines
242 B
Go
package uvm
|
|
|
|
// Terminate requests a utility VM terminate. If IsPending() on the error returned is true,
|
|
// it may not actually be shut down until Wait() succeeds.
|
|
func (uvm *UtilityVM) Terminate() error {
|
|
return uvm.hcsSystem.Terminate()
|
|
}
|