Sha256: fc11cfb4bf57251b4bab007ca1b2deb5ce2465109f8df0b304c376d257c32258

Contents?: true

Size: 1.09 KB

Versions: 42

Compression:

Stored size: 1.09 KB

Contents

require "vagrant"

module VagrantPlugins
  module GuestRedHat
    class Plugin < Vagrant.plugin("2")
      name "Red Hat Enterprise Linux guest"
      description "Red Hat Enterprise Linux guest support."

      guest(:redhat, :linux) do
        require_relative "guest"
        Guest
      end

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

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

      guest_capability(:redhat, :flavor) do
        require_relative "cap/flavor"
        Cap::Flavor
      end

      guest_capability(:redhat, :network_scripts_dir) do
        require_relative "cap/network_scripts_dir"
        Cap::NetworkScriptsDir
      end

      guest_capability(:redhat, :nfs_client_install) do
        require_relative "cap/nfs_client"
        Cap::NFSClient
      end

      guest_capability(:redhat, :rsync_install) do
        require_relative "cap/rsync"
        Cap::RSync
      end
    end
  end
end

Version data entries

42 entries across 38 versions & 5 rubygems

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