blob: 4d164b60a11100d81d8e0f75c9ec275ef89178fe (
plain) (
blame)
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
31
32
33
34
35
36
37
|
---
base_entropy_generator: haveged
base_sysctl_config_user: {}
base_modules_blacklist_:
net:
- dccp
- sctp
- rds
- tipc
fs:
- cramfs
- freevxfs
- hfs
- hfsplus
- jffs2
sound:
- soundcore
- usb-midi
misc:
- bluetooth
- firewire-core
- n_hdlc
- net-pf-31
- thunderbolt
base_modules_blacklist_full: "{{ base_modules_blacklist_ | list }}"
base_modules_blacklist_all_but_sound: "{{ base_modules_blacklist_ | difference(['sound']) | list }}"
base_modules_blacklist_all_but_sound_and_fs: "{{ base_modules_blacklist_ | difference(['sound', 'fs']) | list }}"
base_modules_blacklist_none: []
base_modules_blacklist: "{{ base_modules_blacklist_full }}"
base_packages_extra_host: []
base_packages_extra_group: []
base_intel_nic_stability_fix: false
|