How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "solarium/KaliLinuxRolling"
config.vm.box_version = "1.0.0"
end
vagrant init solarium/KaliLinuxRolling \
--box-version 1.0.0
vagrant up
This version was created over 7 years ago.
Note, due to limitations in Vagrant's detection of Linux variants (and associated capabilities) your VagrantFile needs to indicate the type of guest os:
Vagrant.configure(2) do |config|
config.vm.guest = "debian"
end
Future versions will include a VagrantFile with this as an additional setting.