Blame view

RIOT/dist/tools/packer/vagrantfile.tpl 233 Bytes
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
  # -*- mode: ruby -*-
  # vi: set ft=ruby :
  
  Vagrant.configure("2") do |config|
      config.vm.define "RIOT-VM"
      config.vm.box = "RIOT/ubuntu1604"
  
      config.vm.provider :virtualbox do |v, override|
          v.gui = false
      end
  end