Add Gentoo support for NFS

This commit is contained in:
Mike Lundy 2012-02-02 14:40:27 -08:00 committed by Mitchell Hashimoto
parent be45c86e8d
commit 00953073e7
4 changed files with 27 additions and 0 deletions

View File

@ -7,6 +7,7 @@
- Fix crashing case if there are no ports to forward.
- Fix issue surrounding improper configuration of host only networks on
RedHat guests. [GH-719]
- NFS should work properly on Gentoo. [GH-706]
## 0.9.5 (February 5, 2012)

View File

@ -160,6 +160,7 @@ Vagrant.hosts.register(:arch) { Vagrant::Hosts::Arch }
Vagrant.hosts.register(:bsd) { Vagrant::Hosts::BSD }
Vagrant.hosts.register(:fedora) { Vagrant::Hosts::Fedora }
Vagrant.hosts.register(:freebsd) { Vagrant::Hosts::FreeBSD }
Vagrant.hosts.register(:gentoo) { Vagrant::Hosts::Gentoo }
Vagrant.hosts.register(:linux) { Vagrant::Hosts::Linux }
Vagrant.hosts.register(:windows) { Vagrant::Hosts::Windows }

View File

@ -7,6 +7,7 @@ module Vagrant
autoload :BSD, 'vagrant/hosts/bsd'
autoload :FreeBSD, 'vagrant/hosts/freebsd'
autoload :Fedora, 'vagrant/hosts/fedora'
autoload :Gentoo, 'vagrant/hosts/gentoo'
autoload :Linux, 'vagrant/hosts/linux'
autoload :Windows, 'vagrant/hosts/windows'

View File

@ -0,0 +1,24 @@
require 'pathname'
module Vagrant
module Hosts
class Gentoo < Linux
def self.match?
release_file = Pathname.new("/etc/gentoo-release")
return release_file.exist?
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