vagrant/lib/vagrant/hosts/bsd.rb

49 lines
1.6 KiB
Ruby
Raw Normal View History

module Vagrant
module Hosts
# Represents a BSD host, such as FreeBSD and Darwin (Mac OS X).
class BSD < Base
2010-07-13 05:10:17 +00:00
include Util
include Util::Retryable
2010-07-13 05:10:17 +00:00
def nfs?
retryable(:tries => 10, :on => TypeError) do
system("which nfsd > /dev/null 2>&1")
end
end
2010-07-13 05:10:17 +00:00
def nfs_export(ip, folders)
output = TemplateRenderer.render('nfs/exports',
:uuid => env.vm.uuid,
:ip => ip,
:folders => folders)
# The sleep ensures that the output is truly flushed before any `sudo`
# commands are issued.
2010-08-28 03:53:04 +00:00
env.ui.info "vagrant.hosts.bsd.nfs_export.prepare"
sleep 0.5
2010-07-13 05:10:17 +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
2010-07-13 05:37:24 +00:00
# We run restart here instead of "update" just in case nfsd
# is not starting
system("sudo nfsd restart")
2010-07-13 05:10:17 +00:00
end
2010-07-14 05:30:54 +00:00
def nfs_cleanup
return if !File.exist?("/etc/exports")
2010-07-14 05:30:54 +00:00
system("cat /etc/exports | grep 'VAGRANT-BEGIN: #{env.vm.uuid}' > /dev/null 2>&1")
if $?.to_i == 0
# Use sed to just strip out the block of code which was inserted
# by Vagrant
system("sudo sed -e '/^# VAGRANT-BEGIN: #{env.vm.uuid}/,/^# VAGRANT-END: #{env.vm.uuid}/ d' -i bak /etc/exports")
end
end
end
end
end