14 lines
221 B
Go
14 lines
221 B
Go
package virtualbox
|
|
|
|
func detectVBoxManageCmd() string {
|
|
return detectVBoxManageCmdInPath()
|
|
}
|
|
|
|
func getShareDriveAndName() (string, string) {
|
|
return "hosthome", "/home"
|
|
}
|
|
|
|
func isHyperVInstalled() bool {
|
|
return false
|
|
}
|