2010-09-27 18:26:42 -07:00

53 lines
1.7 KiB
Ruby

module Vagrant
module Hosts
# Represents a Linux based host, such as Ubuntu.
class Linux < Base
include Util
include Util::Retryable
include Util::Sh
def nfs?
retryable(:tries => 10, :on => TypeError) do
# Check procfs to see if NFSd is a supported filesystem
_, status = sh("cat /proc/filesystems | grep nfsd")
# Sometimes the status is nil for some reason. In that case, force a retry
raise TypeError.new("Bad status code") if !status
status.success?
end
end
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.linux.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.
sh(%Q[sudo su root -c "echo '#{line}' >> /etc/exports"])
end
# We run restart here instead of "update" just in case nfsd
# is not starting
sh("sudo /etc/init.d/nfs-kernel-server restart")
end
def nfs_cleanup
return if !File.exist?("/etc/exports")
_, status = sh("cat /etc/exports | grep 'VAGRANT-BEGIN: #{env.vm.uuid}'")
if status.success?
# Use sed to just strip out the block of code which was inserted
# by Vagrant
sh("sudo sed -e '/^# VAGRANT-BEGIN: #{env.vm.uuid}/,/^# VAGRANT-END: #{env.vm.uuid}/ d' -ibak /etc/exports")
end
end
end
end
end