Sha256: e34a4119528a421dace15379cc2543d1b01d3214bc44a89ad233366e52774f0c

Contents?: true

Size: 1.01 KB

Versions: 48

Compression:

Stored size: 1.01 KB

Contents

require_relative "../../../synced_folders/rsync/default_unix_cap"

module VagrantPlugins
  module GuestOpenBSD
    module Cap
      class RSync
        extend VagrantPlugins::SyncedFolderRSync::DefaultUnixCap

        def self.rsync_install(machine)
          install_output = {:stderr => '', :stdout => ''}
          command = 'PKG_PATH="http://ftp.openbsd.org/pub/OpenBSD/' \
            '`uname -r`/packages/`arch -s`/" ' \
            'pkg_add -I rsync--'
          machine.communicate.sudo(command) do |type, data|
            install_output[type] << data if install_output.key?(type)
          end
          # pkg_add returns 0 even if package was not found, so
          # validate package is actually installed
          machine.communicate.sudo('pkg_info -cA | grep inst:rsync-[[:digit:]]',
            error_class: Vagrant::Errors::RSyncNotInstalledInGuest,
            command: command,
            stderr: install_output[:stderr],
            stdout: install_output[:stdout]
          )
        end
      end
    end
  end
end

Version data entries

48 entries across 44 versions & 5 rubygems

Version Path
vagrant-unbundled-2.3.6.0 plugins/guests/openbsd/cap/rsync.rb
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/plugins/guests/openbsd/cap/rsync.rb
vagrant-unbundled-2.3.3.0 plugins/guests/openbsd/cap/rsync.rb
vagrant-unbundled-2.3.2.0 plugins/guests/openbsd/cap/rsync.rb
vagrant-unbundled-2.2.19.0 plugins/guests/openbsd/cap/rsync.rb
vagrant-unbundled-2.2.18.0 plugins/guests/openbsd/cap/rsync.rb
vagrant-unbundled-2.2.16.0 plugins/guests/openbsd/cap/rsync.rb
vagrant-unbundled-2.2.14.0 plugins/guests/openbsd/cap/rsync.rb
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/plugins/guests/openbsd/cap/rsync.rb
vagrant-unbundled-2.2.10.0 plugins/guests/openbsd/cap/rsync.rb
vagrant-unbundled-2.2.9.0 plugins/guests/openbsd/cap/rsync.rb
vagrant-unbundled-2.2.8.0 plugins/guests/openbsd/cap/rsync.rb
vagrant-unbundled-2.2.7.0 plugins/guests/openbsd/cap/rsync.rb
vagrant-unbundled-2.2.6.2 plugins/guests/openbsd/cap/rsync.rb
vagrant-unbundled-2.2.6.1 plugins/guests/openbsd/cap/rsync.rb
vagrant-unbundled-2.2.6.0 plugins/guests/openbsd/cap/rsync.rb
vagrant-unbundled-2.2.5.0 plugins/guests/openbsd/cap/rsync.rb
vagrant-unbundled-2.2.4.0 plugins/guests/openbsd/cap/rsync.rb
vagrant-unbundled-2.2.3.0 plugins/guests/openbsd/cap/rsync.rb
vagrant-unbundled-2.2.2.0 plugins/guests/openbsd/cap/rsync.rb