We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ab78ef commit 24e3ac5Copy full SHA for 24e3ac5
vars/Archlinux.yml
@@ -0,0 +1,22 @@
1
+---
2
+# List of package dependencies common to all Debian distributions
3
+libvirt_host_libvirt_packages_default:
4
+ - libvirt
5
+ - qemu-headless
6
+ - libvirt-python
7
+ - python-lxml
8
+ - ebtables
9
+ - dnsmasq
10
+
11
+# Packages that are only necessary if you require EFI support
12
+libvirt_host_packages_efi:
13
+ - ovmf
14
15
+# List of all packages to install
16
+libvirt_host_libvirt_packages: >
17
+ {{ libvirt_host_libvirt_packages_default +
18
+ (libvirt_host_packages_efi if libvirt_host_enable_efi_support else []) | unique
19
+ }}
20
21
+# These are passed to the lineinfile module to customize configuration files
22
+libvirt_host_lineinfile_extra_rules: []
0 commit comments