Sha256: 5a59c0e63488eb40dbcf93e85a5d3a4535ee3a39be7b8118df4cdad8bf2e17c4

Contents?: true

Size: 1.46 KB

Versions: 41

Compression:

Stored size: 1.46 KB

Contents

require "log4r"

require "vagrant/util/subprocess"
require "vagrant/util/which"

require_relative "helper"

module VagrantPlugins
  module SyncedFolderRSync
    class SyncedFolder < Vagrant.plugin("2", :synced_folder)
      include Vagrant::Util

      def initialize(*args)
        super

        @logger = Log4r::Logger.new("vagrant::synced_folders::rsync")
      end

      def usable?(machine, raise_error=false)
        rsync_path = Which.which("rsync")
        return true if rsync_path
        return false if !raise_error
        raise Vagrant::Errors::RSyncNotFound
      end

      def prepare(machine, folders, opts)
        # Nothing is necessary to do before VM boot.
      end

      def enable(machine, folders, opts)
        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

        ssh_info = machine.ssh_info

        if ssh_info[:private_key_path].empty? && ssh_info[:password]
          machine.ui.warn(I18n.t("vagrant.rsync_ssh_password"))
        end

        folders.each do |id, folder_opts|
          RsyncHelper.rsync_single(machine, ssh_info, folder_opts)
        end
      end
    end
  end
end

Version data entries

41 entries across 34 versions & 7 rubygems

Version Path
vagrant-unbundled-2.1.2.0 plugins/synced_folders/rsync/synced_folder.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/synced_folders/rsync/synced_folder.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/synced_folders/rsync/synced_folder.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/synced_folders/rsync/synced_folder.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/synced_folders/rsync/synced_folder.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/synced_folders/rsync/synced_folder.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/synced_folders/rsync/synced_folder.rb
vagrant-unbundled-2.1.1.0 plugins/synced_folders/rsync/synced_folder.rb
vagrant-unbundled-2.0.4.0 plugins/synced_folders/rsync/synced_folder.rb
vagrant-unbundled-2.0.3.0 plugins/synced_folders/rsync/synced_folder.rb
vagrant-aws-detiber-0.7.2.pre.4 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/plugins/synced_folders/rsync/synced_folder.rb
vagrant-aws-detiber-0.7.2.pre.3 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/plugins/synced_folders/rsync/synced_folder.rb
vagrant-aws-detiber-0.7.2.pre.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/plugins/synced_folders/rsync/synced_folder.rb
vagrant-unbundled-2.0.2.0 plugins/synced_folders/rsync/synced_folder.rb
vagrant-unbundled-2.0.1.0 plugins/synced_folders/rsync/synced_folder.rb
vagrant-aws-mkubenka-0.7.2.pre.22 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-f3fdbf414272/plugins/synced_folders/rsync/synced_folder.rb
vagrant-aws-mkubenka-0.7.2.pre.16 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-1ee58c40e3f5/plugins/synced_folders/rsync/synced_folder.rb
vagrant-unbundled-2.0.0.1 plugins/synced_folders/rsync/synced_folder.rb
vagrant-unbundled-1.9.8.1 plugins/synced_folders/rsync/synced_folder.rb
vagrant-unbundled-1.9.7.1 plugins/synced_folders/rsync/synced_folder.rb