vagrant/plugins/hosts/arch/plugin.rb

16 lines
278 B
Ruby

require "vagrant"
module VagrantPlugins
module HostArch
class Plugin < Vagrant.plugin("1")
name "Arch host"
description "Arch host support."
host("arch") do
require File.expand_path("../host", __FILE__)
Host
end
end
end
end