* account * addresses * administrator * afterwards * because * bridgeable * capabilities * capability * checksum * configuration * configuration for * configure * criteria * delimited * delivered * derivatives * description * detect * directory * display * downloading * during * electric * enabling * encountered * equivalent * executable * executed * hashicorp * hypervisor * hyphens * implementation * incorporate * inheritance * initialize * instance * instead * interactions * invocable * machine * maximum * message * mounting * overridden * overwrite * paramiko * preparing * provides * provisioning * recursively * requested * resetting * retryable * running * satisfied * searching * sometimes * specified * successfully * synced folders * unauthorized * underlying * userprofile * vagrant * vagrantfile * variable * various * version * virtual * windows
15 lines
377 B
Ruby
15 lines
377 B
Ruby
module VagrantPlugins
|
|
module GuestAmazon
|
|
module Cap
|
|
class Flavor
|
|
def self.flavor(machine)
|
|
# Amazon AMI is a frankenstien RHEL, mainly based on 6
|
|
# Maybe in the future if they incorporate RHEL 7 elements
|
|
# this should be extended to read /etc/os-release or similar
|
|
return :rhel
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|