mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-20 16:31:24 -05:00
Those Ruby files are not standalone scripts, so there is no point in having them being executable.
15 lines
270 B
Ruby
15 lines
270 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module GuestKali
|
|
class Plugin < Vagrant.plugin("2")
|
|
name "Kali guest"
|
|
description "Kali guest support."
|
|
|
|
guest(:kali, :debian) do
|
|
require_relative "guest"
|
|
Guest
|
|
end
|
|
end
|
|
end
|
|
end
|