Skip to content

Commit

Permalink
vagrant: sync Tutorials folder into vbox
Browse files Browse the repository at this point in the history
  • Loading branch information
Cenk Gündoğan committed Sep 16, 2016
1 parent 8a74475 commit c767f27
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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|
Expand Down

0 comments on commit c767f27

Please sign in to comment.