16 lines
286 B
Ruby
16 lines
286 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module HostFedora
|
|
class Plugin < Vagrant.plugin("2")
|
|
name "Fedora host"
|
|
description "Fedora host support."
|
|
|
|
host("fedora") do
|
|
require File.expand_path("../host", __FILE__)
|
|
Host
|
|
end
|
|
end
|
|
end
|
|
end
|