Those Ruby files are not standalone scripts, so there is no point in having them being executable.
11 lines
227 B
Ruby
11 lines
227 B
Ruby
require_relative '../linux/guest'
|
|
|
|
module VagrantPlugins
|
|
module GuestKali
|
|
class Guest < VagrantPlugins::GuestLinux::Guest
|
|
# Name used for guest detection
|
|
GUEST_DETECTION_NAME = "kali".freeze
|
|
end
|
|
end
|
|
end
|