Skip to content

Commit bbec35f

Browse files
committed
moves v.gui comment to appropriate location(s)
1 parent 444215f commit bbec35f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Vagrantfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,18 @@ display_name = "metasploit-framework"
66
Vagrant.configure(2) do |config|
77
config.ssh.forward_x11 = true
88
config.vm.box = "hashicorp/bionic64" # https://app.vagrantup.com/hashicorp/boxes/bionic64
9-
#config.gui = true # uncomment to show VM in your hypervisor's GUI
109
config.vm.network :forwarded_port, guest: 4444, host: 4444
1110
config.vm.provider "vmware_desktop" do |v|
1211
v.memory = 2048
1312
v.cpus = 2
1413
v.vmx['displayname'] = display_name
14+
#v.gui = true # uncomment to show VM in your hypervisor's GUI
1515
end
1616
config.vm.provider "virtualbox" do |v|
1717
v.name = display_name
1818
v.memory = 2048
1919
v.cpus = 2
20+
#v.gui = true # uncomment to show VM in your hypervisor's GUI
2021
end
2122
%w(.vimrc .gitconfig).each do |f|
2223
local = File.expand_path "~/#{f}"

0 commit comments

Comments
 (0)