ARBITRARY PROGRAM BUT BAD (NO ARGS)

Co-authored-by: Liam Dalgarno <liamdalg99@gmail.com>
Co-authored-by: jack bond-preston <jackbondpreston@outlook.com>
This commit is contained in:
Liam Dalgarno
2020-11-26 17:55:08 +00:00
parent 807362d1e2
commit ca03d9d77d
4 changed files with 87 additions and 33 deletions

7
Vagrantfile vendored
View File

@ -1,5 +1,8 @@
Vagrant.configure("2") do |config|
config.vm.box = "generic/ubuntu1804"
config.vm.provision "shell", path: "init.sh"
config.vm.synced_folder "./", "/home/vagrant/cw"
config.vm.provision "shell", path: "init.sh", privileged: false
config.vm.synced_folder "./", "/home/vagrant/cw", type: "nfs", nfs_version: 4, "nfs_udp": false, mount_options: ["rw", "vers=4", "tcp", "nolock"]
config.vm.provider :libvirt do |libvirt|
libvirt.cpus = 4
end
end