ansible-roles/lxc/defaults/main.yml
William Hirigoyen 114d857e89
All checks were successful
Ansible Lint |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |2748|0|2748|0|:zzz:
gitea/ansible-roles/pipeline/head This commit looks good
lxc: new lxc_template_mirror option (useful to get old Debian from archive.debian.org)
2024-06-03 17:37:05 +02:00

25 lines
558 B
YAML

---
# Should LXC containers run in unprivilegied (non root) mode?
lxc_unprivilegied_containers: false
# Network type to use. See lxc.container.conf(5).
lxc_network_type: "none"
# Partition to bind mount into containers.
lxc_mount_part: "/home"
# Mirror URL (optionnal).
# For old Debian, use https://archive.debian.org/debian/
lxc_template_mirror: ""
# List of LXC containers to create.
# Eg.:
# lxc_containers:
# - name: php56
# release: jessie
# - name: php70
# release: stretch
# - name: php81
# release: bullseye
lxc_containers: []