Those Ruby files are not standalone scripts, so there is no point in having them being executable.
16 lines
270 B
Ruby
16 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
|