Sha256: 0d82c5db7ff91a2ca81ad99090e4922762ab7b392bfd8e9d362c6910e8663bb9

Contents?: true

Size: 585 Bytes

Versions: 6

Compression:

Stored size: 585 Bytes

Contents

require "vagrant"

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

      guest("suse", "redhat") do
        require File.expand_path("../guest", __FILE__)
        Guest
      end

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

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

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
vagrant-shell-0.2.9 demo/templates/vendor/bundle/ruby/1.9.1/gems/tnargav-1.2.2/plugins/guests/suse/plugin.rb
tnargav-1.2.3 plugins/guests/suse/plugin.rb
vagrant-shell-0.2.8 demo/templates/vendor/bundle/ruby/1.9.1/gems/tnargav-1.2.2/plugins/guests/suse/plugin.rb
vagrant-shell-0.2.6 vendor/bundle/gems/tnargav-1.2.2/plugins/guests/suse/plugin.rb
vagrant-shell-0.2.5 vendor/bundle/gems/tnargav-1.2.2/plugins/guests/suse/plugin.rb
tnargav-1.2.2 plugins/guests/suse/plugin.rb