35 lines
647 B
Ruby
35 lines
647 B
Ruby
require "pathname"
|
|
|
|
require "vagrant"
|
|
|
|
require Vagrant.source_root.join("plugins/hosts/linux/host")
|
|
|
|
module VagrantPlugins
|
|
module HostFedora
|
|
class Host < VagrantPlugins::HostLinux::Host
|
|
def self.match?
|
|
release_file = Pathname.new("/etc/redhat-release")
|
|
|
|
if release_file.exist?
|
|
release_file.open("r") do |f|
|
|
return true if f.gets =~ /^Fedora/
|
|
end
|
|
end
|
|
|
|
false
|
|
end
|
|
|
|
# Normal, mid-range precedence.
|
|
def self.precedence
|
|
5
|
|
end
|
|
|
|
def initialize(*args)
|
|
super
|
|
|
|
@nfs_server_binary = "/etc/init.d/nfs"
|
|
end
|
|
end
|
|
end
|
|
end
|