vagrant/plugins/hosts/slackware/plugin.rb

16 lines
312 B
Ruby
Raw Normal View History

require "vagrant"
module VagrantPlugins
module HostGentoo
class Plugin < Vagrant.plugin("2")
name "Slackware host"
description "Slackware and derivertives host support."
host("slackware") do
require File.expand_path("../host", __FILE__)
Host
end
end
end
end