mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-24 02:10:53 -05:00
15 lines
294 B
Ruby
15 lines
294 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module HostOpenSUSE
|
|
class Plugin < Vagrant.plugin("2")
|
|
name "OpenSUSE host"
|
|
description "OpenSUSE host support."
|
|
|
|
host("opensuse") do
|
|
require File.expand_path("../host", __FILE__)
|
|
Host
|
|
end
|
|
end
|
|
end
|
|
end
|