Fix guest plugin issues

This commit is contained in:
sophia 2021-10-04 16:55:59 -05:00 committed by Paul Hinze
parent 7cc07642a5
commit a3d4c170f0
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ func (h *AlwaysTrueGuest) ParentsFunc() interface{} {
}
func (h *AlwaysTrueGuest) Parents() []string {
return []string{"otherplugin", "force", "guest", "platform", "match"} // We just need to have this be the most of all matches
return []string{"force", "guest", "platform", "match"} // We just need to have this be the most of all matches
}
// HasCapabilityFunc implements component.Guest

View File

@ -1,6 +1,6 @@
module VagrantPlugins
module GuestOpenWrt
class Guest
class Guest < Vagrant.plugin("2", :guest)
# Name used for guest detection
GUEST_DETECTION_NAME = "openwrt".freeze