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

Commit

Permalink
Merge pull request #4390 from nogoegst/openbsd-virtualbox
Browse files Browse the repository at this point in the history
Make VirtualBox driver build on OpenBSD
  • Loading branch information
dgageot authored Feb 20, 2018
2 parents e0e4da5 + d773cc7 commit 97bae34
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions drivers/virtualbox/virtualbox_openbsd.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package virtualbox

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 97bae34

Please sign in to comment.