forked from konstruktoid/hardening
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVagrantfile
27 lines (25 loc) · 871 Bytes
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Vagrant.configure("2") do |config|
config.vm.provider "virtualbox" do |v|
v.default_nic_type = "Am79C973"
v.memory = 2048
v.cpus = 2
v.customize ["modifyvm", :id, "--uart1", "0x3F8", "4"]
v.customize ["modifyvm", :id, "--uartmode1", "file", File::NULL]
end
config.vm.define "focal" do |focal|
focal.ssh.extra_args = ["-o","ConnectTimeout=600"]
focal.ssh.insert_key = true
focal.vm.boot_timeout = 600
focal.vm.box = "ubuntu/focal64"
focal.vm.hostname = "focal"
focal.vm.network "private_network", ip: "10.7.8.45"
end
config.vm.define "groovy" do |groovy|
groovy.ssh.extra_args = ["-o","ConnectTimeout=600"]
groovy.ssh.insert_key = true
groovy.vm.boot_timeout = 600
groovy.vm.box = "ubuntu/groovy64"
groovy.vm.hostname = "groovy"
groovy.vm.network "private_network", ip: "10.7.8.46"
end
end