Defines a common and generic linux detection strategy which can be subclassed and easily reused by providing a custom detection constant.
11 lines
233 B
Ruby
11 lines
233 B
Ruby
require_relative '../linux/guest'
|
|
|
|
module VagrantPlugins
|
|
module GuestMint
|
|
class Guest < VagrantPlugins::GuestLinux::Guest
|
|
# Name used for guest detection
|
|
GUEST_DETECTION_NAME = "Linux Mint".freeze
|
|
end
|
|
end
|
|
end
|