Skip to content

Instantly share code, notes, and snippets.

@Peleke
Last active June 17, 2020 18:19
Show Gist options
  • Save Peleke/bdd81a44fd94730b3b03cf3c2c936766 to your computer and use it in GitHub Desktop.
Save Peleke/bdd81a44fd94730b3b03cf3c2c936766 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.define "linux" do |linux|
linux.vm.box = "cybersecurity/linux-scavenger"
linux.ssh.insert_key = false
linux.vm.network "private_network", ip: "192.168.0.105"
linux.vm.synced_folder ".", "/vagrant", disabled: true
linux.vm.provider "vbox" do |vb| # specify hyper v vm
vb.memory = 1024
vb.cpus = 1
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment