Sha256: 46b2c7d3507bbcebcb7b62a38d8bdd959f800676e716cc6094af9613c2d485ba

Contents?: true

Size: 1.9 KB

Versions: 38

Compression:

Stored size: 1.9 KB

Contents

require "vagrant"

module VagrantPlugins
  module GuestDarwin
    class Plugin < Vagrant.plugin("2")
      name "Darwin guest"
      description "Darwin guest support."

      guest(:darwin, :bsd)  do
        require_relative "guest"
        Guest
      end

      guest_capability(:darwin, :change_host_name) do
        require_relative "cap/change_host_name"
        Cap::ChangeHostName
      end

      guest_capability(:darwin, :choose_addressable_ip_addr) do
        require_relative "cap/choose_addressable_ip_addr"
        Cap::ChooseAddressableIPAddr
      end

      guest_capability(:darwin, :configure_networks) do
        require_relative "cap/configure_networks"
        Cap::ConfigureNetworks
      end

      guest_capability(:darwin, :halt) do
        require_relative "cap/halt"
        Cap::Halt
      end

      guest_capability(:darwin, :mount_smb_shared_folder) do
        require_relative "cap/mount_smb_shared_folder"
        Cap::MountSMBSharedFolder
      end

      guest_capability(:darwin, :mount_vmware_shared_folder) do
        require_relative "cap/mount_vmware_shared_folder"
        Cap::MountVmwareSharedFolder
      end

      guest_capability(:darwin, :rsync_installed) do
        require_relative "cap/rsync"
        Cap::RSync
      end

      guest_capability(:darwin, :rsync_command) do
        require_relative "cap/rsync"
        Cap::RSync
      end

      guest_capability(:darwin, :rsync_post) do
        require_relative "cap/rsync"
        Cap::RSync
      end

      guest_capability(:darwin, :rsync_pre) do
        require_relative "cap/rsync"
        Cap::RSync
      end

      guest_capability(:darwin, :shell_expand_guest_path) do
        require_relative "cap/shell_expand_guest_path"
        Cap::ShellExpandGuestPath
      end

      guest_capability(:darwin, :verify_vmware_hgfs) do
        require_relative "cap/verify_vmware_hgfs"
        Cap::VerifyVmwareHgfs
      end
    end
  end
end

Version data entries

38 entries across 34 versions & 4 rubygems

Version Path
vagrant-unbundled-2.2.7.0 plugins/guests/darwin/plugin.rb
vagrant-unbundled-2.2.6.2 plugins/guests/darwin/plugin.rb
vagrant-unbundled-2.2.6.1 plugins/guests/darwin/plugin.rb
vagrant-unbundled-2.2.6.0 plugins/guests/darwin/plugin.rb
vagrant-unbundled-2.2.5.0 plugins/guests/darwin/plugin.rb
vagrant-unbundled-2.2.4.0 plugins/guests/darwin/plugin.rb
vagrant-unbundled-2.2.3.0 plugins/guests/darwin/plugin.rb
vagrant-unbundled-2.2.2.0 plugins/guests/darwin/plugin.rb
vagrant-unbundled-2.2.0.0 plugins/guests/darwin/plugin.rb
vagrant-unbundled-2.1.4.0 plugins/guests/darwin/plugin.rb
vagrant-unbundled-2.1.2.0 plugins/guests/darwin/plugin.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/darwin/plugin.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/darwin/plugin.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/darwin/plugin.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/darwin/plugin.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/darwin/plugin.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/darwin/plugin.rb
vagrant-unbundled-2.1.1.0 plugins/guests/darwin/plugin.rb
vagrant-unbundled-2.0.4.0 plugins/guests/darwin/plugin.rb
vagrant-unbundled-2.0.3.0 plugins/guests/darwin/plugin.rb