diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-04-03 18:47:01 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-04-03 18:47:01 +0200 |
| commit | c02d9b5def07bf487d9f0d3230fff2df8c210016 (patch) | |
| tree | cfc32e4cc48451ba5d423b143c2e00b72a3fa0dc /roles/bootstrap/tasks/main.yml | |
| parent | 73a2e01416dfcf48d6f75cc2ad303707907563f9 (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.yml | 7 |
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" |
