From c767f2716805f5b340ef8ab601296414a025d140 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cenk=20G=C3=BCndo=C4=9Fan?= Date: Fri, 16 Sep 2016 13:48:21 +0200 Subject: [PATCH] vagrant: sync Tutorials folder into vbox --- Vagrantfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 4f5bc07c67..57ae712560 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -5,6 +5,8 @@ Vagrant.configure(2) do |config| # For a complete reference, please see the online documentation at # https://docs.vagrantup.com. + config.vm.define "RIOT", primary: true + # Every Vagrant development environment requires a box. You can search for # boxes at https://atlas.hashicorp.com/search. config.vm.box = "boxcutter/ubuntu1604" @@ -23,6 +25,13 @@ Vagrant.configure(2) do |config| # config.vm.synced_folder "../data", "/vagrant_data" config.vm.synced_folder ".", "/home/vagrant/RIOT" + config.vm.define "tutorials", autostart: false do |tutorials| + tutorials.vm.synced_folder "../.", "/home/vagrant/Tutorials" + config.vm.provider "virtualbox" do |vb| + vb.name = "RIOT VM - Tutorials" + end + end + # Provider-specific configuration so you can fine-tune various # backing providers for Vagrant. These expose provider-specific options. config.vm.provider "virtualbox" do |vb|