mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Alexandre Abadie
562cc9007c
This change is also a complete refactoring of the generation of the vagrant image
14 lines
326 B
Smarty
14 lines
326 B
Smarty
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
Vagrant.configure("2") do |config|
|
|
config.vm.define "RIOT-VM"
|
|
config.vm.box = "RIOT/ubuntu1804"
|
|
config.ssh.username = "user"
|
|
config.vm.synced_folder ".", "/vagrant", disabled: true
|
|
|
|
config.vm.provider :virtualbox do |v, override|
|
|
v.gui = false
|
|
end
|
|
end
|