mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-24 18:31:05 -05:00
15 lines
315 B
Ruby
15 lines
315 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module HostSlackware
|
|
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
|