Sha256: 38b8dd51dd99222dbb8b4d9332a44973efc963e8fcdc3f7a0e9e5ca08ea73b1d

Contents?: true

Size: 1.2 KB

Versions: 12

Compression:

Stored size: 1.2 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

      guest_capability(:redhat, :smb_install) do
        require_relative "cap/smb"
        Cap::SMB
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 3 rubygems

Version Path
vagrant-unbundled-2.3.6.0 plugins/guests/redhat/plugin.rb
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/plugins/guests/redhat/plugin.rb
vagrant-unbundled-2.3.3.0 plugins/guests/redhat/plugin.rb
vagrant-unbundled-2.3.2.0 plugins/guests/redhat/plugin.rb
vagrant-unbundled-2.2.19.0 plugins/guests/redhat/plugin.rb
vagrant-unbundled-2.2.18.0 plugins/guests/redhat/plugin.rb
vagrant-unbundled-2.2.16.0 plugins/guests/redhat/plugin.rb
vagrant-unbundled-2.2.14.0 plugins/guests/redhat/plugin.rb
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/plugins/guests/redhat/plugin.rb
vagrant-unbundled-2.2.10.0 plugins/guests/redhat/plugin.rb
vagrant-unbundled-2.2.9.0 plugins/guests/redhat/plugin.rb
vagrant-unbundled-2.2.8.0 plugins/guests/redhat/plugin.rb