This repository has been archived on 2024-02-16. You can view files and clone it, but cannot push or open issues or pull requests.
sysconfig/group_vars/all.yml

45 lines
1.4 KiB
YAML
Raw Normal View History

2022-01-14 19:46:59 +01:00
---
# Custom variables ────────────────────────────────────────────────────────────
2022-01-14 19:46:59 +01:00
rootfs: btrfs
2022-01-14 19:46:59 +01:00
username: follie
repository: https://mirror.math.princeton.edu/pub/alpinelinux
# seatd or elogind
seat_manager: seatd
# Have no effect when seat_manager == 'elogind'
# See use_polkit variable below
polkit: False
# Should be a file name in /usr/share/consolefonts/
console_font: ter-h22b.psf.gz
unbound_upstream_nameservers:
- 9.9.9.9@853#dns.quad9.net
- 149.112.112.112@853#dns.quad9.net
- 2620:fe::fe@853#dns.quad9.net
- 2620:fe::9@853#dns.quad9.net
2022-01-14 19:46:59 +01:00
# 'virtlockd' and 'virtlogd' will always be started. Don't list them here
libvirt_daemons:
- virtinterfaced
- virtnetworkd
- virtnodedevd
- virtqemud
- virtstoraged
# 'podman' or 'nerdctl'
rootless_container_cli: podman
# Secrets encrypted with ansible-vault ────────────────────────────────────────
password: '{{ vault_password }}'
# Do NOT change these variables ───────────────────────────────────────────────
# elogind needs polkit to function
use_polkit: '{{ (seat_manager == "elogind") | ternary("True", polkit) }}'