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