2012-04-19 05:20:45 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module HostOpenSUSE
|
|
|
|
class Plugin < Vagrant.plugin("1")
|
|
|
|
name "OpenSUSE host"
|
|
|
|
description "OpenSUSE host support."
|
|
|
|
|
2012-05-23 23:03:14 +00:00
|
|
|
host("opensuse") do
|
|
|
|
require File.expand_path("../host", __FILE__)
|
|
|
|
Host
|
|
|
|
end
|
2012-04-19 05:20:45 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|