2010-07-17 16:09:06 +00:00
|
|
|
module Vagrant
|
|
|
|
module Hosts
|
|
|
|
# Represents a Linux based host, such as Ubuntu.
|
|
|
|
class Linux < Base
|
|
|
|
include Util
|
2010-09-09 07:37:54 +00:00
|
|
|
include Util::Retryable
|
2010-07-17 16:09:06 +00:00
|
|
|
|
|
|
|
def nfs?
|
2010-09-09 07:37:54 +00:00
|
|
|
retryable(:tries => 10, :on => TypeError) do
|
2010-07-17 16:09:06 +00:00
|
|
|
# Check procfs to see if NFSd is a supported filesystem
|
2010-09-30 06:38:07 +00:00
|
|
|
system("cat /proc/filesystems | grep nfsd > /dev/null 2>&1")
|
2010-07-17 16:09:06 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def nfs_export(ip, folders)
|
|
|
|
output = TemplateRenderer.render('nfs/exports_linux',
|
|
|
|
:uuid => env.vm.uuid,
|
|
|
|
:ip => ip,
|
|
|
|
:folders => folders)
|
|
|
|
|
2010-09-22 00:10:46 +00:00
|
|
|
env.ui.info I18n.t("vagrant.hosts.linux.nfs_export.prepare")
|
2010-07-24 07:29:46 +00:00
|
|
|
sleep 0.5
|
|
|
|
|
2010-07-17 16:09:06 +00:00
|
|
|
output.split("\n").each do |line|
|
|
|
|
# This should only ask for administrative permission once, even
|
|
|
|
# though its executed in multiple subshells.
|
2010-09-30 06:38:07 +00:00
|
|
|
system(%Q[sudo su root -c "echo '#{line}' >> /etc/exports"])
|
2010-07-17 16:09:06 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# We run restart here instead of "update" just in case nfsd
|
|
|
|
# is not starting
|
2010-09-30 06:38:07 +00:00
|
|
|
system("sudo /etc/init.d/nfs-kernel-server restart")
|
2010-07-17 16:09:06 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def nfs_cleanup
|
2010-07-30 16:38:45 +00:00
|
|
|
return if !File.exist?("/etc/exports")
|
2010-09-30 06:38:07 +00:00
|
|
|
system("cat /etc/exports | grep 'VAGRANT-BEGIN: #{env.vm.uuid}' > /dev/null 2>&1")
|
2010-07-17 16:09:06 +00:00
|
|
|
|
2010-09-30 06:38:07 +00:00
|
|
|
if $?.to_i == 0
|
2010-07-17 16:09:06 +00:00
|
|
|
# Use sed to just strip out the block of code which was inserted
|
|
|
|
# by Vagrant
|
2010-09-30 06:38:07 +00:00
|
|
|
system("sudo sed -e '/^# VAGRANT-BEGIN: #{env.vm.uuid}/,/^# VAGRANT-END: #{env.vm.uuid}/ d' -ibak /etc/exports")
|
2010-07-17 16:09:06 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|