Class: VagrantPlugins::ProviderVeertu::SyncedFolder

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-veertu/synced_folder.rb

Instance Method Summary collapse

Instance Method Details

#cleanup(machine, opts) ⇒ Object



76
77
78
# File 'lib/vagrant-veertu/synced_folder.rb', line 76

def cleanup(machine, opts)
  driver(machine).clear_shared_folders if machine.id && machine.id != ""
end

#disable(machine, folders, _opts) ⇒ Object



62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/vagrant-veertu/synced_folder.rb', line 62

def disable(machine, folders, _opts)
  if machine.guest.capability?(:unmount_veertu_shared_folder)
    folders.each do |id, data|
      machine.guest.capability(
        :unmount_veertu_shared_folder,
        data[:guestpath], data)
    end
  end

  # Remove the shared folders from the VM metadata
  names = folders.map { |id, _data| os_friendly_id(id) }
  driver(machine).unshare_folders(names)
end

#enable(machine, folders, _opts) ⇒ 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
# File 'lib/vagrant-veertu/synced_folder.rb', line 20

def enable(machine, folders, _opts)
  share_folders(machine, folders, true)

  # short guestpaths first, so we don't step on ourselves
  folders = folders.sort_by do |id, data|
    if data[:guestpath]
      data[:guestpath].length
    else
      # A long enough path to just do this at the end.
      10000
    end
  end

  # Go through each folder and mount
  machine.ui.output(I18n.t("vagrant.actions.vm.share_folders.mounting"))
  folders.each do |id, data|
    if data[:guestpath]
      # Guest path specified, so mount the folder to specified point
      machine.ui.detail(I18n.t("vagrant.actions.vm.share_folders.mounting_entry",
                            guestpath: data[:guestpath],
                            hostpath: data[:hostpath]))

      # Dup the data so we can pass it to the guest API
      data = data.dup

      # Calculate the owner and group
      ssh_info = machine.ssh_info
      data[:owner] ||= ssh_info[:username]
      data[:group] ||= ssh_info[:username]

      # Mount the actual folder
      machine.guest.capability(
        :mount_veertu_shared_folder,
        os_friendly_id(id), data[:guestpath], data)
    else
      # If no guest path is specified, then automounting is disabled
      machine.ui.detail(I18n.t("vagrant.actions.vm.share_folders.nomount_entry",
                            hostpath: data[:hostpath]))
    end
  end
end

#prepare(machine, folders, _opts) ⇒ Object



16
17
18
# File 'lib/vagrant-veertu/synced_folder.rb', line 16

def prepare(machine, folders, _opts)
  share_folders(machine, folders, false)
end

#usable?(machine, raise_errors = false) ⇒ Boolean

Returns:

  • (Boolean)


6
7
8
9
10
11
12
13
14
# File 'lib/vagrant-veertu/synced_folder.rb', line 6

def usable?(machine, raise_errors=false)
  # These synced folders only work if the provider if Veertu
  return false if machine.provider_name != :veertu

  # This only happens with `vagrant package --base`. Sigh.
  return true if !machine.provider_config

  machine.provider_config.functional_veertusf
end