14 lines
306 B
Ruby
14 lines
306 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
require_relative '../linux/guest'
|
|
|
|
module VagrantPlugins
|
|
module GuestTinyCore
|
|
class Guest < VagrantPlugins::GuestLinux::Guest
|
|
# Name used for guest detection
|
|
GUEST_DETECTION_NAME = "Core Linux".freeze
|
|
end
|
|
end
|
|
end
|