vagrant/lib/vagrant/hosts/linux.rb

66 lines
1.9 KiB
Ruby
Raw Normal View History

2011-08-28 06:39:02 +00:00
require 'vagrant/util/platform'
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
include Util::Retryable
2010-07-17 16:09:06 +00:00
2011-12-12 07:22:44 +00:00
def self.match?
Util::Platform.linux?
end
2011-12-12 07:22:44 +00:00
def self.precedence
# Set a lower precedence because this is a generic OS. We
# want specific distros to match first.
2
2011-08-28 06:39:02 +00:00
end
def initialize(*args)
super
@nfs_server_binary = "/etc/init.d/nfs-kernel-server"
end
2010-07-17 16:09:06 +00:00
def nfs?
retryable(:tries => 10, :on => TypeError) do
2010-07-17 16:09:06 +00:00
# Check procfs to see if NFSd is a supported filesystem
system("cat /proc/filesystems | grep nfsd > /dev/null 2>&1")
2010-07-17 16:09:06 +00:00
end
end
2011-12-12 07:22:44 +00:00
def nfs_export(id, ip, folders)
2010-07-17 16:09:06 +00:00
output = TemplateRenderer.render('nfs/exports_linux',
2011-12-12 07:22:44 +00:00
:uuid => id,
2010-07-17 16:09:06 +00:00
:ip => ip,
:folders => folders)
2011-12-12 07:22:44 +00:00
@ui.info I18n.t("vagrant.hosts.linux.nfs_export.prepare")
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.
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
system("sudo #{@nfs_server_binary} restart")
2010-07-17 16:09:06 +00:00
end
2011-12-12 07:22:44 +00:00
def nfs_cleanup(id)
return if !File.exist?("/etc/exports")
system("cat /etc/exports | grep 'VAGRANT-BEGIN: #{id}' > /dev/null 2>&1")
2010-07-17 16:09:06 +00:00
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: #{id}/,/^# VAGRANT-END: #{id}/ d' -ibak /etc/exports")
end
2010-07-17 16:09:06 +00:00
end
end
end
end