2013-08-24 13:10:51 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
2013-08-24 15:10:18 +00:00
|
|
|
module HostSlackware
|
2013-08-24 13:10:51 +00:00
|
|
|
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
|