Mounting to paths where user has no write permissions (e.g. /)

This commit is contained in:
alh84001 2015-05-25 15:35:06 +02:00
parent 09eec472f6
commit 1c04934d89
1 changed files with 11 additions and 3 deletions

View File

@ -8,16 +8,24 @@ module VagrantPlugins
extend Vagrant::Util::Retryable extend Vagrant::Util::Retryable
def self.mount_smb_shared_folder(machine, name, guestpath, options) def self.mount_smb_shared_folder(machine, name, guestpath, options)
expanded_guest_path = machine.guest.capability(:shell_expand_guest_path, guestpath) expanded_guest_path = machine.guest.capability(:shell_expand_guest_path, guestpath)
machine.communicate.execute("mkdir -p #{expanded_guest_path}")
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]) smb_password = Shellwords.shellescape(options[:smb_password])
mount_options = options[:mount_options]; mount_options = options[:mount_options];
mount_command = "mount -t smbfs " + mount_command = "mount -t smbfs " +
(mount_options ? "-o '#{mount_options.join(",")}' " : "") + (mount_options ? "-o '#{mount_options.join(",")}' " : "") +
"'//#{options[:smb_username]}:#{smb_password}@#{options[:smb_host]}/#{name}' " + "'//#{options[:smb_username]}:#{smb_password}@#{options[:smb_host]}/#{name}' " +
"#{expanded_guest_path}" "#{expanded_guest_path}"
retryable(on: Vagrant::Errors::DarwinMountFailed, tries: 10, sleep: 5) do retryable(on: Vagrant::Errors::DarwinMountFailed, tries: 10, sleep: 2) do
machine.communicate.execute( machine.communicate.execute(
mount_command, mount_command,
error_class: Vagrant::Errors::DarwinMountFailed) error_class: Vagrant::Errors::DarwinMountFailed)