# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
config.vm.define 'ubuntu20' do |vagrant|
vagrant.vm.hostname = "ubuntu"
vagrant.vm.box = "bento/ubuntu-20.04"
vagrant.vm.communicator = "ssh"
vagrant.ssh.insert_key=false
vagrant.vm.network :private_network, ip: '192.168.56.1'
vagrant.vm.synced_folder '.', '/home/vagrant/hws'
vagrant.vm.provider 'virtualbox' do |vb|
vb.memory = 4096
end
vagrant.vm.provision "shell", path: "setup.sh"
end
end
| # | Change | User | Description | Committed | |
|---|---|---|---|---|---|
| #3 | 29789 | Jen Bottom | Making changes to VM while playing with multipass etc | ||
| #2 | 28438 | Jen Bottom | Copy up of Vagrant file for Ubuntu20.04 machine | ||
| #1 | 28437 | Jen Bottom |
Adding vagrant file and setup script for ubuntu 20.04 VM. General purpose, but creating for P4DCTL use/tests |