Sha256: ec1bb48582d0401cb91a8fa5e307498559a4c5c91d937ce97364a792f278f3e6

Contents?: true

Size: 619 Bytes

Versions: 1

Compression:

Stored size: 619 Bytes

Contents

require "vagrant"

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

      guest("gentoo", "linux") do
        require File.expand_path("../guest", __FILE__)
        Guest
      end

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

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-cloudstack-1.2.0 vendor/bundle/bundler/gems/vagrant-c84e05fd063f/plugins/guests/gentoo/plugin.rb