Sha256: 73869c087fd223cd7b52bd41156034dbd9bf2ef5a53bd4bbec052dee91011a05

Contents?: true

Size: 423 Bytes

Versions: 2

Compression:

Stored size: 423 Bytes

Contents

require "vagrant"

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

      guest("ubuntu", "debian") do
        require_relative "guest"
        Guest
      end

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vagrant-unbundled-1.8.4.2 plugins/guests/ubuntu/plugin.rb
vagrant-unbundled-1.8.4.1 plugins/guests/ubuntu/plugin.rb