mirror of
https://github.com/rancher/os.git
synced 2025-08-18 14:58:32 +00:00
11 lines
210 B
Go
11 lines
210 B
Go
package vmcheck
|
|
|
|
import (
|
|
"github.com/sigma/bdoor"
|
|
)
|
|
|
|
// IsVirtualWorld returns whether the code is running in a VMware virtual machine or no
|
|
func IsVirtualWorld() bool {
|
|
return bdoor.HypervisorPortCheck()
|
|
}
|