Mitchell Hashimoto 6f45cdc1ed Some code cleanup
2012-02-07 21:20:33 -08:00

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