blob: 85fa2dff072f7c48e83fe91f30a1ce0dac48b40e [file] [log] [blame]
dulalsaurab8c8e6332021-05-21 20:37:03 +00001# -*- mode: ruby -*-
2# vi: set ft=ruby :
3
4# This vagrant box is built with Ubuntu 20.04 basebox from bento. Mini-NDN is
5# pre-installed in this box. Recommended resource allocation for mini NDN:
6# memory = "4096" cpus = "4". However, modifiy the memory, cups and other
7# configuration as per your need.
8
9Vagrant.configure("2") do |config|
10 config.vm.box = "sdulal/mini-ndn"
11 config.vm.provider "virtualbox" do |vb|
12 vb.memory = "4096"
13 vb.cpus = "4"
14 vb.name = "mini-ndn-box"
15 end
16end