summaryrefslogtreecommitdiffstats
path: root/roles/bootstrap/tasks/main.yml
blob: fbc3de56f647461edaa76f72c9cbf84658781f2c (plain) (blame)
1
2
3
4
5
6
7
8
9
---
- name: "Set root,boot partition paths"
  ansible.builtin.set_fact:
    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"