vagrant/plugins/hosts/bsd/host.rb

98 lines
2.8 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'
2012-04-19 05:20:45 +00:00
module VagrantPlugins
module HostBSD
# Represents a BSD host, such as FreeBSD and Darwin (Mac OS X).
2012-04-19 05:20:45 +00:00
class Host < Vagrant::Hosts::Base
include Vagrant::Util
include Vagrant::Util::Retryable
2010-07-13 05:10:17 +00:00
2011-12-12 07:22:44 +00:00
def self.match?
2012-04-19 05:20:45 +00:00
Vagrant::Util::Platform.darwin? || Vagrant::Util::Platform.bsd?
2011-12-12 07:22:44 +00:00
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"
@nfs_exports_template = "nfs/exports"
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)
output = TemplateRenderer.render(@nfs_exports_template,
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.
2012-01-13 07:33:17 +00:00
@ui.info I18n.t("vagrant.hosts.bsd.nfs_export")
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)
2012-01-14 04:38:20 +00:00
return if !File.exist?("/etc/exports")
2012-01-13 07:27:35 +00:00
@logger.info("Pruning invalid NFS entries...")
2012-01-13 07:33:17 +00:00
output = false
2012-01-13 07:27:35 +00:00
File.read("/etc/exports").lines.each do |line|
2012-03-14 04:29:38 +00:00
if id = line[/^# VAGRANT-BEGIN: (.+?)$/, 1]
if valid_ids.include?(id)
@logger.debug("Valid ID: #{id}")
2012-01-13 07:27:35 +00:00
else
2012-01-13 07:33:17 +00:00
if !output
# We want to warn the user but we only want to output once
@ui.info I18n.t("vagrant.hosts.bsd.nfs_prune")
output = true
end
2012-03-14 04:29:38 +00:00
@logger.info("Invalid ID, pruning: #{id}")
nfs_cleanup(id)
2012-01-13 07:27:35 +00:00
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