Skip to content

Instantly share code, notes, and snippets.

@Peleke
Last active February 20, 2020 20:54
Show Gist options
  • Save Peleke/f1a4ad0d5f921fdb64ba7efec08a744a to your computer and use it in GitHub Desktop.
Save Peleke/f1a4ad0d5f921fdb64ba7efec08a744a to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
vagrant.configure("2") do |config|
config.vm.box = "cybersecurity/linux-scavenger"
config.vm.network "private_network", ip: "192.168.0.105", bridge: "Default Switch"
config.vm.synced_folder ".", "/vagrant", type: "smb", smb_username: "$env:SMB_USERNAME",
smb_password: "$env:SMB_PASSWORD"
config.vm.define "linux" do |linux|
linux.vm.box = "cybersecurity/linux-scavenger"
linux.ssh.insert_key = false
linux.vm.provider "hyperv" do |hv|
hv.memory = 2048
hv.cpus = 1
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment