Class: VagrantPlugins::GuestAlpine::Cap::ConfigureNetworks

Inherits:
Object
  • Object
show all
Includes:
Vagrant::Util
Defined in:
lib/vagrant-alpine/cap/configure_networks.rb

Class Method Summary collapse

Class Method Details

.configure_networks(machine, networks) ⇒ Object



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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/vagrant-alpine/cap/configure_networks.rb', line 20

def self.configure_networks(machine, networks)
  machine.communicate.tap do |comm|
    # First, remove any previous network modifications
    # from the interface file.
    comm.sudo("sed -e '/^#VAGRANT-BEGIN/,$ d' /etc/network/interfaces > /tmp/vagrant-network-interfaces.pre")
    comm.sudo("sed -ne '/^#VAGRANT-END/,$ p' /etc/network/interfaces | tail -n +2 > /tmp/vagrant-network-interfaces.post")

    # Accumulate the configurations to add to the interfaces file as
    # well as what interfaces we're actually configuring since we use that
    # later.
    interfaces = Set.new
    entries = []
    networks.each do |network|
      interfaces.add(network[:interface])
      entry = TemplateRenderer.render("guests/alpine/network_#{network[:type]}", { options: network, template_root: source_root.join('templates') })
      entries << entry
    end

    # Perform the careful dance necessary to reconfigure
    # the network interfaces
    temp = Tempfile.new('vagrant')
    temp.binmode
    temp.write(entries.join("\n"))
    temp.close

    comm.upload(temp.path, '/tmp/vagrant-network-entry')

    # Bring down all the interfaces we're reconfiguring. By bringing down
    # each specifically, we avoid reconfiguring eth0 (the NAT interface) so
    # SSH never dies.
    interfaces.each do |interface|
      comm.sudo("/sbin/ifdown eth#{interface} 2> /dev/null")
      comm.sudo("/sbin/ip addr flush dev eth#{interface} 2> /dev/null")
    end

    comm.sudo('cat /tmp/vagrant-network-interfaces.pre /tmp/vagrant-network-entry /tmp/vagrant-network-interfaces.post > /etc/network/interfaces')
    comm.sudo('rm -f /tmp/vagrant-network-interfaces.pre /tmp/vagrant-network-entry /tmp/vagrant-network-interfaces.post')

    # Bring back up each network interface, reconfigured
    interfaces.each do |interface|
      comm.sudo("/sbin/ifup eth#{interface}")
    end
  end
end

.source_rootObject



16
17
18
# File 'lib/vagrant-alpine/cap/configure_networks.rb', line 16

def self.source_root
  @source_root ||= Pathname.new(File.expand_path('../../../../', __FILE__))
end