forked from includeos/IncludeOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
24 lines (18 loc) · 743 Bytes
/
Vagrantfile
File metadata and controls
24 lines (18 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define "IncludeOS" do |config|
config.vm.box = "ubuntu/xenial64"
config.vm.provider :virtualbox do |vb|
vb.name = "IncludeOS"
end
config.vm.synced_folder ".", "/vagrant", disable: true
config.vm.synced_folder ".", "/IncludeOS", create: true
config.vm.provision "shell",
inline: "echo cd /IncludeOS >> /home/ubuntu/.bashrc"
config.vm.synced_folder "~/IncludeOS_install",
"/home/vagrant/IncludeOS_install", create: true
config.vm.provision "shell", inline: "apt-get update && apt-get install -qq git"
end
end