blob: af5dc49f38da4fa3de2aef39244ae5f5c9f329c7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
- name: "Set root,boot partition paths"
ansible.builtin.set_fact:
# noqa: var-naming[no-role-prefix] as these facts are used for multiple roles and is easier read this way
mnt_boot_path: "{{ partition_boot.mount_path }}"
mnt_root_path: "{{ partition_root.mount_path }}"
- name: "Install archlinux"
ansible.builtin.include_tasks: "install-archlinux.yml"
when: ansible_os_family == "Archlinux"
- name: "Install debian"
ansible.builtin.include_tasks: "install-debian.yml"
when: ansible_os_family == "Debian"
|