Class: Vagrant::Hosts::Linux

Inherits:
Base
  • Object
show all
Includes:
Util, Util::Retryable
Defined in:
lib/vagrant/hosts/linux.rb

Overview

Represents a Linux based host, such as Ubuntu.

Direct Known Subclasses

Arch, Fedora

Instance Attribute Summary

Attributes inherited from Base

#env

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Util::Retryable

#retryable

Methods inherited from Base

detect, load

Constructor Details

#initialize(*args) ⇒ Linux

Returns a new instance of Linux.



24
25
26
27
28
# File 'lib/vagrant/hosts/linux.rb', line 24

def initialize(*args)
  super

  @nfs_server_binary = "/etc/init.d/nfs-kernel-server"
end

Class Method Details

.distro_dispatchObject



10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/vagrant/hosts/linux.rb', line 10

def self.distro_dispatch
  return nil if !Util::Platform.linux?
  return Arch if File.exist?("/etc/rc.conf") && File.exist?("/etc/pacman.conf")

  if File.exist?("/etc/redhat-release")
    # Check if we have a known redhat release
    File.open("/etc/redhat-release") do |f|
      return Fedora if f.gets =~ /^Fedora/
    end
  end

  return self
end

Instance Method Details

#nfs?Boolean

Returns:

  • (Boolean)


30
31
32
33
34
35
# File 'lib/vagrant/hosts/linux.rb', line 30

def nfs?
  retryable(:tries => 10, :on => TypeError) do
    # Check procfs to see if NFSd is a supported filesystem
    system("cat /proc/filesystems | grep nfsd > /dev/null 2>&1")
  end
end

#nfs_cleanupObject



57
58
59
60
61
62
63
64
65
66
# File 'lib/vagrant/hosts/linux.rb', line 57

def nfs_cleanup
  return if !File.exist?("/etc/exports")
  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' -ibak /etc/exports")
  end
end

#nfs_export(ip, folders) ⇒ Object



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/vagrant/hosts/linux.rb', line 37

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.
    system(%Q[sudo su root -c "echo '#{line}' >> /etc/exports"])
  end

  # We run restart here instead of "update" just in case nfsd
  # is not starting
  system("sudo #{@nfs_server_binary} restart")
end