summaryrefslogtreecommitdiffstats
path: root/roles/bootstrap/tasks/main.yml
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2026-04-03 18:47:01 +0200
committerAhmed Abdelhalim <[email protected]>2026-04-03 18:47:01 +0200
commitc02d9b5def07bf487d9f0d3230fff2df8c210016 (patch)
treecfc32e4cc48451ba5d423b143c2e00b72a3fa0dc /roles/bootstrap/tasks/main.yml
parent73a2e01416dfcf48d6f75cc2ad303707907563f9 (diff)
Split archlinux setup on mac from others and fix EFI on mac
Diffstat (limited to 'roles/bootstrap/tasks/main.yml')
-rw-r--r--roles/bootstrap/tasks/main.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/roles/bootstrap/tasks/main.yml b/roles/bootstrap/tasks/main.yml
index cc35056..cb92f99 100644
--- a/roles/bootstrap/tasks/main.yml
+++ b/roles/bootstrap/tasks/main.yml
@@ -6,8 +6,13 @@
mnt_root_path: "{{ partition_root.mount_path }}"
- name: "Install archlinux"
- ansible.builtin.include_tasks: "install-archlinux.yml"
when: ansible_facts['os_family'] == "Archlinux"
+ block:
+ - name: "Install archlinux"
+ ansible.builtin.include_tasks: "install-archlinux.yml"
+ - name: "Install archlinux on Mac"
+ ansible.builtin.include_tasks: "install-archlinux-mac.yml"
+ when: bootstrap_mac
- name: "Install debian"
when: ansible_facts['os_family'] == "Debian"