Sha256: bd714f935ac697e39bc3cf9f054a17dc2db4e02491fa39b8f5b55c432a27080b

Contents?: true

Size: 345 Bytes

Versions: 2

Compression:

Stored size: 345 Bytes

Contents

module VagrantPlugins
  module GuestArch
    module Cap
      class RSync
        def self.rsync_install(machine)
          comm = machine.communicate
          comm.sudo <<-EOH.gsub(/^ {12}/, '')
            set -e
            pacman -Sy --noconfirm
            pacman -S --noconfirm rsync
          EOH
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vagrant-unbundled-1.8.5.2 plugins/guests/arch/cap/rsync.rb
vagrant-unbundled-1.8.5.1 plugins/guests/arch/cap/rsync.rb