blob: 04f1bda9a8741f253130cef41a27255299c7b181 [file] [log] [blame]
dulalsaurab8c8e6332021-05-21 20:37:03 +00001# -*- mode: ruby -*-
2# vi: set ft=ruby :
3
awlane58a83f62025-05-23 09:44:33 -05004# This vagrant box is built with Ubuntu 22.04 basebox from bento. Mini-NDN is
dulalsaurab8c8e6332021-05-21 20:37:03 +00005# pre-installed in this box. Recommended resource allocation for mini NDN:
awlane58a83f62025-05-23 09:44:33 -05006# memory = "4096" cpus = "4". However, modifiy the memory, CPU cores, and other
7# configuration as needed.
dulalsaurab8c8e6332021-05-21 20:37:03 +00008
9Vagrant.configure("2") do |config|
awlane58a83f62025-05-23 09:44:33 -050010 config.vm.box = "netlab-memphis-minindn/minindn-0.7.0"
dulalsaurab8c8e6332021-05-21 20:37:03 +000011 config.vm.provider "virtualbox" do |vb|
12 vb.memory = "4096"
13 vb.cpus = "4"
14 vb.name = "mini-ndn-box"
15 end
awlane58a83f62025-05-23 09:44:33 -050016 config.vm.provider "vmware_desktop" do |vb|
17 vb.memory = "4096"
18 vb.cpus = "4"
19 end
dulalsaurab8c8e6332021-05-21 20:37:03 +000020end