Add Gentoo support for NFS
This commit is contained in:
parent
be45c86e8d
commit
00953073e7
|
@ -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)
|
||||
|
||||
|
|
|
@ -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 }
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue