Added Arch Linux as under vagrant/hosts
Added NFS support for Arch Linux under vagrant/hosts by adding vagrant/hosts/arch and a platform test for Arch Linux.
This commit is contained in:
parent
33f5e2ed82
commit
2c091c98cc
|
@ -3,5 +3,6 @@ module Vagrant
|
||||||
autoload :Base, 'vagrant/hosts/base'
|
autoload :Base, 'vagrant/hosts/base'
|
||||||
autoload :BSD, 'vagrant/hosts/bsd'
|
autoload :BSD, 'vagrant/hosts/bsd'
|
||||||
autoload :Linux, 'vagrant/hosts/linux'
|
autoload :Linux, 'vagrant/hosts/linux'
|
||||||
|
autoload :Arch, 'vagrant/hosts/arch'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
module Vagrant
|
||||||
|
module Hosts
|
||||||
|
class Arch < Linux
|
||||||
|
def nfs_export(ip, folders)
|
||||||
|
output = TemplateRenderer.render('nfs/exports_linux',
|
||||||
|
:uuid => env.vm.uuid,
|
||||||
|
:ip => ip,
|
||||||
|
:folders => folders)
|
||||||
|
|
||||||
|
env.ui.info I18n.t("vagrant.hosts.arch.nfs_export.prepare")
|
||||||
|
sleep 0.5
|
||||||
|
|
||||||
|
output.split("\n").each do |line|
|
||||||
|
# This should only ask for administrative permission once, even
|
||||||
|
# though its executed in multiple subshells.
|
||||||
|
system(%Q[sudo su root -c "echo '#{line}' >> /etc/exports"])
|
||||||
|
end
|
||||||
|
|
||||||
|
# We run restart here instead of "update" just in case nfsd
|
||||||
|
# is not starting
|
||||||
|
system("sudo /etc/rc.d/rpcbind restart")
|
||||||
|
system("sudo /etc/rc.d/nfs-common restart")
|
||||||
|
system("sudo /etc/rc.d/nfs-server restart")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
|
@ -31,6 +31,7 @@ module Vagrant
|
||||||
classes = {
|
classes = {
|
||||||
:darwin => BSD,
|
:darwin => BSD,
|
||||||
:bsd => BSD,
|
:bsd => BSD,
|
||||||
|
:arch => Arch,
|
||||||
:linux => Linux
|
:linux => Linux
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,11 @@ module Vagrant
|
||||||
false
|
false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def arch?
|
||||||
|
linux?() and File.exist?('/etc/rc.conf') and
|
||||||
|
File.exist?('/etc/pacman.conf') and File.exist?('/etc/rc.d/')
|
||||||
|
end
|
||||||
|
|
||||||
# Returns boolean noting whether this is a 64-bit CPU. This
|
# Returns boolean noting whether this is a 64-bit CPU. This
|
||||||
# is not 100% accurate and there could easily be false negatives.
|
# is not 100% accurate and there could easily be false negatives.
|
||||||
#
|
#
|
||||||
|
|
|
@ -451,6 +451,10 @@ en:
|
||||||
nfs_export:
|
nfs_export:
|
||||||
prepare: "Preparing to edit /etc/exports. Administrator privileges will be required..."
|
prepare: "Preparing to edit /etc/exports. Administrator privileges will be required..."
|
||||||
|
|
||||||
|
arch:
|
||||||
|
nfs_export:
|
||||||
|
prepare: "Preparing to edit /etc/exports. Administrator privileges will be required..."
|
||||||
|
|
||||||
provisioners:
|
provisioners:
|
||||||
chef:
|
chef:
|
||||||
json: "Generating chef JSON and uploading..."
|
json: "Generating chef JSON and uploading..."
|
||||||
|
|
Loading…
Reference in New Issue