Skip to content
This repository has been archived by the owner on Sep 26, 2021. It is now read-only.

Commit

Permalink
Make VirtualBox driver build on OpenBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
unkaktus committed Feb 10, 2018
1 parent 5048437 commit 3e99e80
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions drivers/virtualbox/virtualbox_openbsd.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package virtualbox

import ()

func (d *Driver) IsVTXDisabled() bool {
return false
}

func detectVBoxManageCmd() string {
return detectVBoxManageCmdInPath()
}

func getShareDriveAndName() (string, string) {
return "hosthome", "/home"
}

func isHyperVInstalled() bool {
return false
}

0 comments on commit 3e99e80

Please sign in to comment.