Last change
on this file was
9cef76ed,
checked in by Caolan McMahon <caolan.mcmahon@…>, 18 months ago
|
Upgrade to Debian 10 "Buster"
|
-
Property mode set to
100644
|
File size:
628 bytes
|
Line | |
---|
1 | # -*- mode: ruby -*- |
---|
2 | # vi: set ft=ruby : |
---|
3 | |
---|
4 | # For a complete reference, please see the online documentation at |
---|
5 | # https://docs.vagrantup.com. |
---|
6 | |
---|
7 | Vagrant.configure("2") do |config| |
---|
8 | |
---|
9 | config.vm.box = "debian/buster64" |
---|
10 | |
---|
11 | # disable synced /vagrant folder |
---|
12 | config.vm.synced_folder '.', '/vagrant', disabled: true |
---|
13 | |
---|
14 | config.vm.provider "libvirt" do |libvirt| |
---|
15 | libvirt.memory = 1024 |
---|
16 | end |
---|
17 | |
---|
18 | config.vm.provider "virtualbox" do |virtualbox| |
---|
19 | virtualbox.memory = 1024 |
---|
20 | end |
---|
21 | |
---|
22 | config.vm.provision "ansible" do |ansible| |
---|
23 | ansible.playbook = "dev-playbook.yml" |
---|
24 | end |
---|
25 | |
---|
26 | config.vm.network "private_network", ip: "192.168.33.10" |
---|
27 | |
---|
28 | end |
---|
Note: See
TracBrowser
for help on using the repository browser.