mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-22 01:11:43 -05:00
10 lines
239 B
Ruby
10 lines
239 B
Ruby
require_relative '../linux/guest'
|
|
|
|
module VagrantPlugins
|
|
module GuestElementary
|
|
class Guest < VagrantPlugins::GuestLinux::Guest
|
|
# Name used for guest detection
|
|
GUEST_DETECTION_NAME = "elementary".freeze
|
|
end
|
|
end
|
|
end
|