vagrant/plugins/host_gentoo/host.rb

21 lines
378 B
Ruby
Raw Normal View History

2012-04-19 05:20:45 +00:00
module VagrantPlugins
module HostGentoo
class Host < VagrantPlugins::HostLinux::Host
2012-02-02 22:40:27 +00:00
def self.match?
2012-02-08 05:20:33 +00:00
return File.exists?("/etc/gentoo-release")
2012-02-02 22:40:27 +00:00
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