Sha256: 42f41a01bf8106cae3a2b33510d9d8873d33c4e96ba10673b710b921b9fb9cd5

Contents?: true

Size: 1.66 KB

Versions: 33

Compression:

Stored size: 1.66 KB

Contents

require "vagrant"

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

      config(:solaris) do
        require_relative "config"
        Config
      end

      guest(:solaris)  do
        require_relative "guest"
        Guest
      end

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

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

      guest_capability(:solaris, :insert_public_key) do
        require_relative "cap/insert_public_key"
        Cap::InsertPublicKey
      end

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

      guest_capability(:solaris, :mount_virtualbox_shared_folder) do
        require_relative "cap/mount_virtualbox_shared_folder"
        Cap::MountVirtualBoxSharedFolder
      end

      guest_capability(:solaris, :remove_public_key) do
        require_relative "cap/remove_public_key"
        Cap::RemovePublicKey
      end

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

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

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

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

Version data entries

33 entries across 29 versions & 5 rubygems

Version Path
vagrant-unbundled-2.1.4.0 plugins/guests/solaris/plugin.rb
vagrant-unbundled-2.1.2.0 plugins/guests/solaris/plugin.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/solaris/plugin.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/solaris/plugin.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/solaris/plugin.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/solaris/plugin.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/solaris/plugin.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/solaris/plugin.rb
vagrant-unbundled-2.1.1.0 plugins/guests/solaris/plugin.rb
vagrant-unbundled-2.0.4.0 plugins/guests/solaris/plugin.rb
vagrant-unbundled-2.0.3.0 plugins/guests/solaris/plugin.rb
vagrant-aws-detiber-0.7.2.pre.4 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/plugins/guests/solaris/plugin.rb
vagrant-aws-detiber-0.7.2.pre.3 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/plugins/guests/solaris/plugin.rb
vagrant-aws-detiber-0.7.2.pre.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/plugins/guests/solaris/plugin.rb
vagrant-unbundled-2.0.2.0 plugins/guests/solaris/plugin.rb
vagrant-unbundled-2.0.1.0 plugins/guests/solaris/plugin.rb
vagrant-aws-mkubenka-0.7.2.pre.22 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-f3fdbf414272/plugins/guests/solaris/plugin.rb
vagrant-aws-mkubenka-0.7.2.pre.16 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-1ee58c40e3f5/plugins/guests/solaris/plugin.rb
vagrant-unbundled-2.0.0.1 plugins/guests/solaris/plugin.rb
vagrant-unbundled-1.9.8.1 plugins/guests/solaris/plugin.rb