OS releases was added to fedora in Feb 2012
c6a541628f
and released into both F17 and F18: https://bugzilla.redhat.com/show_bug.cgi?id=733117
Those have both been EOL'ed since 2014
11 lines
215 B
Ruby
11 lines
215 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module GuestFedora
|
|
class Guest < VagrantPlugins::GuestLinux::Guest
|
|
# Name used for guest detection
|
|
GUEST_DETECTION_NAME = "fedora".freeze
|
|
end
|
|
end
|
|
end
|