vagrant/lib/vagrant/hosts/bsd.rb

87 lines
2.4 KiB
Ruby
Raw Normal View History

2012-01-13 07:27:35 +00:00
require 'log4r'
2011-08-28 06:39:02 +00:00
require 'vagrant/util/platform'
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
2011-12-12 07:22:44 +00:00
def self.match?
Util::Platform.darwin? || Util::Platform.bsd?
end
def self.precedence
# Set a lower precedence because this is a generic OS. We
# want specific distros to match first.
2
end
def initialize(*args)
super
2012-01-13 07:27:35 +00:00
@logger = Log4r::Logger.new("vagrant::hosts::bsd")
2011-12-12 07:22:44 +00:00
@nfs_restart_command = "sudo nfsd restart"
2011-08-28 06:39:02 +00:00
end
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
2011-12-12 07:22:44 +00:00
def nfs_export(id, ip, folders)
2010-07-13 05:10:17 +00:00
output = TemplateRenderer.render('nfs/exports',
2011-12-12 07:22:44 +00:00
:uuid => id,
2010-07-13 05:10:17 +00:00
:ip => ip,
:folders => folders)
# The sleep ensures that the output is truly flushed before any `sudo`
# commands are issued.
2011-12-12 07:22:44 +00:00
@ui.info I18n.t("vagrant.hosts.bsd.nfs_export.prepare")
sleep 0.5
2012-01-13 07:27:35 +00:00
# First, clean up the old entry
nfs_cleanup(id)
# Output the rendered template into the exports
2010-07-13 05:10:17 +00:00
output.split("\n").each do |line|
2011-02-09 06:27:16 +00:00
line = line.gsub('"', '\"')
system(%Q[sudo su root -c "echo '#{line}' >> /etc/exports"])
2010-07-13 05:10:17 +00:00
end
2010-07-13 05:37:24 +00:00
# We run restart here instead of "update" just in case nfsd
# is not starting
2011-12-12 07:22:44 +00:00
system(@nfs_restart_command)
2010-07-13 05:10:17 +00:00
end
2010-07-14 05:30:54 +00:00
2012-01-13 07:27:35 +00:00
def nfs_prune(valid_ids)
@logger.info("Pruning invalid NFS entries...")
File.read("/etc/exports").lines.each do |line|
if line =~ /^# VAGRANT-BEGIN: (.+?)$/
if valid_ids.include?($1.to_s)
@logger.debug("Valid ID: #{$1.to_s}")
else
@logger.info("Invalid ID, pruning: #{$1.to_s}")
nfs_cleanup($1.to_s)
end
end
end
end
protected
2011-12-12 07:22:44 +00:00
def nfs_cleanup(id)
return if !File.exist?("/etc/exports")
2010-07-14 05:30:54 +00:00
2012-01-13 07:27:35 +00:00
# Use sed to just strip out the block of code which was inserted
# by Vagrant, and restart NFS.
system("sudo sed -e '/^# VAGRANT-BEGIN: #{id}/,/^# VAGRANT-END: #{id}/ d' -ibak /etc/exports")
2010-07-14 05:30:54 +00:00
end
end
end
end