Now uses simple external ansible galaxy role, and should install incus from a pre-fixed seed.
9 lines
350 B
YAML
9 lines
350 B
YAML
---
|
|
## for bookworm only
|
|
- name: "Add incus repository to bookworm system"
|
|
ansible.builtin.include_tasks: add-repo.yaml
|
|
when: ansible_distribution == "Debian" and ansible_distribution_release == "bookworm"
|
|
|
|
# TODO: there might be remaining issues on other OSes like centos, etc
|
|
- name: Install incus
|
|
ansible.builtin.include_tasks: install.yaml
|