Class: VagrantPlugins::ProviderLibvirt::Cap::MountP9

Inherits:
Object
  • Object
show all
Extended by:
Vagrant::Util::Retryable
Defined in:
lib/vagrant-libvirt/cap/mount_p9.rb

Class Method Summary collapse

Class Method Details

.mount_p9_shared_folder(machine, folders) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/vagrant-libvirt/cap/mount_p9.rb', line 9

def self.mount_p9_shared_folder(machine, folders)
  folders.each do |name, opts|
    # Expand the guest path so we can handle things like "~/vagrant"
    expanded_guest_path = machine.guest.capability(
      :shell_expand_guest_path, opts[:guestpath])

    # Do the actual creating and mounting
    machine.communicate.sudo("mkdir -p #{expanded_guest_path}")

    # Mount
    mount_tag = name.dup

    mount_opts="-o trans=virtio"
    mount_opts += ",access=#{opts[:owner]}" if opts[:owner]
    mount_opts += ",version=#{opts[:version]}" if opts[:version]
    mount_opts += ",#{opts[:mount_opts]}" if opts[:mount_opts]

    mount_command = "mount -t 9p #{mount_opts} '#{mount_tag}' #{expanded_guest_path}"
    retryable(:on => Vagrant::Errors::LinuxMountFailed,
              :tries => 5,
              :sleep => 3) do
      machine.communicate.sudo('modprobe 9p')
      machine.communicate.sudo('modprobe 9pnet_virtio')
      machine.communicate.sudo(mount_command,
              :error_class => Vagrant::Errors::LinuxMountFailed)
    end
  end
end