2012-05-23 23:03:14 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
require Vagrant.source_root.join("plugins/hosts/linux/host")
|
|
|
|
|
2012-04-19 05:20:45 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module HostArch
|
|
|
|
class Host < VagrantPlugins::HostLinux::Host
|
2011-12-12 07:22:44 +00:00
|
|
|
def self.match?
|
2012-10-26 18:15:58 +00:00
|
|
|
File.exist?("/etc/arch-release")
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.nfs?
|
|
|
|
# HostLinux checks for nfsd which returns false unless the
|
|
|
|
# services are actively started. This leads to a misleading
|
|
|
|
# error message. Checking for nfs (no d) seems to work
|
|
|
|
# regardless. Also fixes useless use of cat, regex, and
|
|
|
|
# redirection.
|
|
|
|
Kernel.system("grep -Fq nfs /proc/filesystems")
|
2011-12-12 07:22:44 +00:00
|
|
|
end
|
|
|
|
|
2012-01-25 18:39:17 +00:00
|
|
|
# Normal, mid-range precedence.
|
|
|
|
def self.precedence
|
|
|
|
5
|
|
|
|
end
|
|
|
|
|
2011-12-12 07:22:44 +00:00
|
|
|
def nfs_export(id, ip, folders)
|
2011-04-19 16:35:20 +00:00
|
|
|
output = TemplateRenderer.render('nfs/exports_linux',
|
2011-12-12 07:22:44 +00:00
|
|
|
:uuid => id,
|
2011-04-19 16:35:20 +00:00
|
|
|
:ip => ip,
|
|
|
|
:folders => folders)
|
|
|
|
|
2011-12-12 07:22:44 +00:00
|
|
|
@ui.info I18n.t("vagrant.hosts.arch.nfs_export.prepare")
|
2011-04-19 16:35:20 +00:00
|
|
|
sleep 0.5
|
|
|
|
|
2012-09-19 05:26:51 +00:00
|
|
|
nfs_cleanup(id)
|
|
|
|
|
2011-04-19 16:35:20 +00:00
|
|
|
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
|
|
|
|
|
2012-09-19 05:26:51 +00:00
|
|
|
if systemd?
|
|
|
|
# Call start to be nice. This will be a no-op if things are
|
|
|
|
# already running. Then use exportfs to pick up the changes we
|
|
|
|
# just made.
|
|
|
|
system("sudo systemctl start nfsd.service rpc-idmapd.service rpc-mountd.service rpcbind.service")
|
|
|
|
system("sudo exportfs -r")
|
|
|
|
else
|
|
|
|
# The restarting of services when we might not need to can be
|
|
|
|
# considered evil, but this will be obviated by systemd soon
|
|
|
|
# enough anyway.
|
|
|
|
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
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
# This tests to see if systemd is used on the system. This is used
|
|
|
|
# in newer versions of Arch, and requires a change in behavior.
|
|
|
|
def systemd?
|
2012-10-26 18:16:04 +00:00
|
|
|
`ps -o comm= 1`.chomp == 'systemd'
|
2011-04-19 16:35:20 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|