vagrant/plugins/hosts/linux/plugin.rb

16 lines
282 B
Ruby
Raw Normal View History

2012-04-19 01:20:45 -04:00
require "vagrant"
module VagrantPlugins
module HostLinux
2012-11-07 00:20:22 -05:00
class Plugin < Vagrant.plugin("2")
2012-04-19 01:20:45 -04:00
name "Linux host"
description "Linux host support."
2012-05-23 19:03:14 -04:00
host("linux") do
require File.expand_path("../host", __FILE__)
Host
end
2012-04-19 01:20:45 -04:00
end
end
end