-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
22 lines (20 loc) · 760 Bytes
/
Vagrantfile
File metadata and controls
22 lines (20 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Vagrant.configure("2") do |config|
config.vm.box = "bento/ubuntu-16.04"
config.vm.provider "virtualbox" do |vb|
vb.memory = "4024"
vb.cpus = "1"
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
vb.customize ["modifyvm", :id, "--natdnsproxy1", "on"]
vb.customize ["modifyvm", :id, "--nictype1", "virtio"]
end
config.vm.provision "ansible" do |ansible|
ansible.playbook = "setup-bbb.yml"
ansible.become = true
ansible.verbose = "v"
ansible.extra_vars = {
hostname: "example.com",
greenlight_repo: "https://github.com/bigbluebutton/greenlight.git",
ssl_email: "root@example.com"
}
end
end