Sha256: 607c140f5eb43de8ec3863d575f6fc1a84667e0a81e14602f4cee7f8298e5680

Contents?: true

Size: 415 Bytes

Versions: 6

Compression:

Stored size: 415 Bytes

Contents

require "vagrant"

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

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

      guest_capability("openbsd", "halt") do
        require_relative "cap/halt"
        Cap::Halt
      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/openbsd/plugin.rb
tnargav-1.2.3 plugins/guests/openbsd/plugin.rb
vagrant-shell-0.2.8 demo/templates/vendor/bundle/ruby/1.9.1/gems/tnargav-1.2.2/plugins/guests/openbsd/plugin.rb
vagrant-shell-0.2.6 vendor/bundle/gems/tnargav-1.2.2/plugins/guests/openbsd/plugin.rb
vagrant-shell-0.2.5 vendor/bundle/gems/tnargav-1.2.2/plugins/guests/openbsd/plugin.rb
tnargav-1.2.2 plugins/guests/openbsd/plugin.rb