mirror of https://github.com/docker/docs.git
12 lines
343 B
Go
12 lines
343 B
Go
package virtualbox
|
|
|
|
// IsVTXDisabled checks if VT-X is disabled in the BIOS. If it is, the vm will fail to start.
|
|
// If we can't be sure it is disabled, we carry on and will check the vm logs after it's started.
|
|
func (d *Driver) IsVTXDisabled() bool {
|
|
return false
|
|
}
|
|
|
|
func detectVBoxManageCmd() string {
|
|
return detectVBoxManageCmdInPath()
|
|
}
|