Class: VagrantPlugins::SimpleCloud::Actions::SyncFolders
- Inherits:
-
Object
- Object
- VagrantPlugins::SimpleCloud::Actions::SyncFolders
- Defined in:
- lib/vagrant-simplecloud/actions/sync_folders.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, env) ⇒ SyncFolders
constructor
A new instance of SyncFolders.
Constructor Details
#initialize(app, env) ⇒ SyncFolders
Returns a new instance of SyncFolders.
8 9 10 11 12 |
# File 'lib/vagrant-simplecloud/actions/sync_folders.rb', line 8 def initialize(app, env) @app = app @machine = env[:machine] @logger = Log4r::Logger.new('vagrant::simplecloud::sync_folders') end |
Instance Method Details
#call(env) ⇒ Object
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 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 77 78 79 80 81 82 83 84 85 |
# File 'lib/vagrant-simplecloud/actions/sync_folders.rb', line 14 def call(env) ssh_info = @machine.ssh_info @machine.config.vm.synced_folders.each do |id, data| next if data[:disabled] if @machine.guest.capability?(:rsync_installed) installed = @machine.guest.capability(:rsync_installed) if !installed can_install = @machine.guest.capability?(:rsync_install) raise Vagrant::Errors::RSyncNotInstalledInGuest if !can_install @machine.ui.info I18n.t("vagrant.rsync_installing") @machine.guest.capability(:rsync_install) end end hostpath = File.(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('vagrant_simple_cloud.info.rsyncing', { :hostpath => hostpath, :guestpath => guestpath }) # create the guest path @machine.communicate.sudo("mkdir -p #{guestpath}") @machine.communicate.sudo( "chown -R #{ssh_info[:username]} #{guestpath}") key = ssh_info[:private_key_path] key = key[0] if key.is_a?(Array) # attach to vagrant's default rsync opetions # http://docs.vagrantup.com/v2/synced-folders/rsync.html args = ["--verbose", "--archive", "--delete", "-z", "--copy-links", *Array(data[:rsync__args])] exclude = [".vagrant/", *Array(data[:rsync__exclude])] # rsync over to the guest path using the ssh info command = [ "rsync", *args.map{|e|[e]}.flatten, *exclude.map{|e|["--exclude", e]}.flatten, "-e", "ssh -p #{ssh_info[:port]} -o StrictHostKeyChecking=no -i '#{key}'", 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 @app.call(env) end |