Sha256: 083826ed8ffa5ed3e52392026d30563521e5f85b5658e5ee3a13f1904c33ffce
Contents?: true
Size: 1.64 KB
Versions: 5
Compression:
Stored size: 1.64 KB
Contents
require "vagrant/util/retryable" require "shellwords" module VagrantPlugins module GuestDarwin module Cap class MountSMBSharedFolder extend Vagrant::Util::Retryable def self.mount_smb_shared_folder(machine, name, guestpath, options) expanded_guest_path = machine.guest.capability(:shell_expand_guest_path, guestpath) mount_point_owner = options[:owner]; if mount_point_owner machine.communicate.sudo("mkdir -p #{expanded_guest_path}") machine.communicate.sudo("chown #{mount_point_owner} #{expanded_guest_path}") else # fallback to assumption that user has permission # to create the specified mountpoint machine.communicate.execute("mkdir -p #{expanded_guest_path}") end smb_password = Shellwords.shellescape(options[:smb_password]) # Ensure password is scrubbed Vagrant::Util::CredentialScrubber.sensitive(smb_password) mount_options = options[:mount_options]; mount_command = "mount -t smbfs " + (mount_options ? "-o '#{mount_options.join(",")}' " : "") + "//#{options[:smb_username]}:#{smb_password}@#{options[:smb_host]}/#{name} " + "#{expanded_guest_path}" retryable(on: Vagrant::Errors::DarwinMountFailed, tries: 10, sleep: 2) do result = machine.communicate.execute(mount_command) if result.exit_code != 0 raise Vagrant::Errors::DarwinMountFailed, command: mount_command, output: result.stderr end end end end end end end
Version data entries
5 entries across 5 versions & 2 rubygems