21 lines
342 B
Ruby
21 lines
342 B
Ruby
module Vagrant
|
|
module Hosts
|
|
class Gentoo < Linux
|
|
def self.match?
|
|
return File.exists?("/etc/gentoo-release")
|
|
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
|