vagrant/plugins/guests/arch/plugin.rb

26 lines
582 B
Ruby
Raw Normal View History

require "vagrant"
module VagrantPlugins
module GuestArch
2012-11-07 05:14:45 +00:00
class Plugin < Vagrant.plugin("2")
name "Arch guest"
description "Arch guest support."
guest("arch", "linux") do
require File.expand_path("../guest", __FILE__)
Guest
end
2013-04-04 18:39:58 +00:00
guest_capability("arch", "change_host_name") do
require_relative "cap/change_host_name"
Cap::ChangeHostName
end
guest_capability("arch", "configure_networks") do
require_relative "cap/configure_networks"
Cap::ConfigureNetworks
end
end
end
end