Sha256: 7415bbbdc9b3a6edb68be8400a4042c9cc147b639edf69f18203e55d7d7e2c0b

Contents?: true

Size: 1.46 KB

Versions: 63

Compression:

Stored size: 1.46 KB

Contents

module VagrantPlugins
  module GuestSolaris
    module Cap
      class MountVirtualBoxSharedFolder
        def self.mount_virtualbox_shared_folder(machine, name, guestpath, options)
          # These are just far easier to use than the full options syntax
          owner = options[:owner]
          group = options[:group]

          # Create the shared folder
          machine.communicate.execute("#{machine.config.solaris.suexec_cmd} mkdir -p #{guestpath}")

          if owner.is_a? Integer
            mount_uid = owner
          else
            # We have to use this `id` command instead of `/usr/bin/id` since this
            # one accepts the "-u" and "-g" flags.
            mount_uid = "`/usr/xpg4/bin/id -u #{owner}`"
          end

          if group.is_a? Integer
            mount_gid = group
          else
            mount_gid = "`/usr/xpg4/bin/id -g #{group}`"
          end

          # Mount the folder with the proper owner/group
          mount_options = "-o uid=#{mount_uid},gid=#{mount_gid}"
          if options[:mount_options]
            mount_options += ",#{options[:mount_options].join(",")}"
          end

          machine.communicate.execute("#{machine.config.solaris.suexec_cmd} /sbin/mount -F vboxfs #{mount_options} #{name} #{guestpath}")

          # chown the folder to the proper owner/group
          machine.communicate.execute("#{machine.config.solaris.suexec_cmd} chown #{mount_uid}:#{mount_gid} #{guestpath}")
        end
      end
    end
  end
end

Version data entries

63 entries across 56 versions & 8 rubygems

Version Path
vagrant-unbundled-1.9.8.1 plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
vagrant-unbundled-1.9.7.1 plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
vagrant-aws-mkubenka-0.7.2.pre.14 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
vagrant-aws-mkubenka-0.7.2.pre.11 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
vagrant-aws-mkubenka-0.7.2.pre.10 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
vagrant-aws-mkubenka-0.7.2.pre.9 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
vagrant-unbundled-1.9.5.1 plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
vagrant-unbundled-1.9.1.1 plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
vagrant-unbundled-1.8.5.2 plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
vagrant-unbundled-1.8.5.1 plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
vagrant-unbundled-1.8.4.2 plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
vagrant-unbundled-1.8.4.1 plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
vagrant-unbundled-1.8.1.2 plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
vagrant-unbundled-1.8.1.1 plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-b421af58e8b3/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-309e896975d1/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb