Class: Vagrant::Hosts::Arch

Inherits:
Linux show all
Defined in:
lib/vagrant/hosts/arch.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Linux

#initialize, #nfs?, #nfs_prune

Methods included from Util::Retryable

#retryable

Methods inherited from Base

#initialize, #nfs?, #nfs_prune

Constructor Details

This class inherits a constructor from Vagrant::Hosts::Linux

Class Method Details

.match?Boolean

Returns:

  • (Boolean)


4
5
6
# File 'lib/vagrant/hosts/arch.rb', line 4

def self.match?
  File.exist?("/etc/os-release") && File.read("/etc/os-release") =~ /arch linux/i
end

.precedenceObject

Normal, mid-range precedence.



9
10
11
# File 'lib/vagrant/hosts/arch.rb', line 9

def self.precedence
  5
end

Instance Method Details

#nfs_export(id, ip, folders) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/vagrant/hosts/arch.rb', line 13

def nfs_export(id, ip, folders)
  output = TemplateRenderer.render('nfs/exports_linux',
                                   :uuid => id,
                                   :ip => ip,
                                   :folders => folders)

  @ui.info I18n.t("vagrant.hosts.arch.nfs_export.prepare")
  sleep 0.5

  nfs_cleanup(id)

  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

  if systemd?
    # Call start to be nice. This will be a no-op if things are
    # already running. Then use exportfs to pick up the changes we
    # just made.
    system("sudo systemctl start nfsd.service rpc-idmapd.service rpc-mountd.service rpcbind.service")
    system("sudo exportfs -r")
  else
    # The restarting of services when we might not need to can be
    # considered evil, but this will be obviated by systemd soon
    # enough anyway.
    system("sudo /etc/rc.d/rpcbind restart")
    system("sudo /etc/rc.d/nfs-common restart")
    system("sudo /etc/rc.d/nfs-server restart")
  end
end