blob: a7cf76fc8ab4db8759dfc25e08948427735f53f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
---
- hosts: vagrant_libvirt
become: True
gather_facts: False
connection: local
vars:
vyos_platform: vagrant-libvirt
vyos_format: box
vyos_vagrant_libvirt_box: "vyos_vagrant_libvirt_image.box"
vyos_output_img: "{{ vyos_vagrant_libvirt_box }}"
cloud_init: False
enable_dhcp: True
enable_ssh: True
vagrant_provider: libvirt
roles:
- install-packages
- download-iso
- mount-iso
- get-version
- create-disk
- setup-root-partition
- install-image
- mount-root-fs
- install-config
- install-grub-wrapper
- install-persistence-conf
- unmount-pre
- unmount-all
- vagrant-libvirt-box
- release-vagrant-box
|