Hiroshi Miura bae7dbb0e2 Support slackware linux
Signed-off-by: Hiroshi Miura <miurahr@linux.com>
2013-08-24 22:11:22 +09:00

16 lines
312 B
Ruby

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