Class: VagrantPlugins::VSphere::Action::SyncFolders

Inherits:
Object
  • Object
show all
Includes:
Vagrant::Util::ScopedHashOverride
Defined in:
lib/vSphere/action/sync_folders.rb

Overview

This middleware uses ‘rsync` to sync the folders over to the vSphere instance Borrowed from the Vagrant AWS gem, see github.com/mitchellh/vagrant-aws/blob/master/lib/vagrant-aws/action/sync_folders.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ SyncFolders

Returns a new instance of SyncFolders.



14
15
16
# File 'lib/vSphere/action/sync_folders.rb', line 14

def initialize(app, env)
  @app    = app
end

Instance Method Details

#call(env) ⇒ Object



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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/vSphere/action/sync_folders.rb', line 18

def call(env)
  @app.call(env)

  ssh_info = env[:machine].ssh_info

  env[:machine].config.vm.synced_folders.each do |id, data|
    data = scoped_hash_override(data, :vsphere)

    # Ignore disabled shared folders
    next if data[:disabled]

    unless Vagrant::Util::Which.which('rsync')
      env[:ui].warn(I18n.t('vsphere.errors.rsync_not_found'))
      break
    end
    hostpath  = File.expand_path(data[:hostpath], env[:root_path])
    guestpath = data[:guestpath]

    # Make sure there is a trailing slash on the host path to
    # avoid creating an additional directory with rsync
    hostpath = "#{hostpath}/" if hostpath !~ /\/$/

    # on windows rsync.exe requires cygdrive-style paths
    if Vagrant::Util::Platform.windows?
      hostpath = hostpath.gsub(/^(\w):/) { "/cygdrive/#{$1}" }
    end

    env[:ui].info(I18n.t("vsphere.rsync_folder",
                        :hostpath => hostpath,
                        :guestpath => guestpath))

    # Create the guest path
    env[:machine].communicate.sudo("mkdir -p '#{guestpath}'")
    env[:machine].communicate.sudo("chown #{ssh_info[:username]} '#{guestpath}'")

    # Rsync over to the guest path using the SSH info
    command = [
      "rsync", "--verbose", "--archive", "-z",
      "--exclude", ".vagrant/",
      "-e", "ssh -p #{ssh_info[:port]} -o StrictHostKeyChecking=no #{get_private_key_options ssh_info}",
      hostpath,
      "#{ssh_info[:username]}@#{ssh_info[:host]}:#{guestpath}"]


    # we need to fix permissions when using rsync.exe on windows, see
    # http://stackoverflow.com/questions/5798807/rsync-permission-denied-created-directories-have-no-permissions
    if Vagrant::Util::Platform.windows?
      command.insert(1, "--chmod", "ugo=rwX")
    end

    r = Vagrant::Util::Subprocess.execute(*command)
    if r.exit_code != 0
      raise Errors::RsyncError,
        :guestpath => guestpath,
        :hostpath => hostpath,
        :stderr => r.stderr
    end
  end
end