2012-04-19 04:23:25 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module GuestDebian
|
|
|
|
class Plugin < Vagrant.plugin("1")
|
|
|
|
name "Debian guest"
|
|
|
|
description "Debian guest support."
|
|
|
|
|
2012-05-23 22:57:43 +00:00
|
|
|
guest("debian") do
|
|
|
|
require File.expand_path("../guest", __FILE__)
|
|
|
|
Guest
|
|
|
|
end
|
2012-04-19 04:23:25 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|