mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-11 14:53:48 -05:00
13 lines
302 B
Ruby
13 lines
302 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
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
|