summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2026-06-30 12:32:50 +0200
committerAhmed Abdelhalim <[email protected]>2026-06-30 12:32:50 +0200
commitd7feebad646313559806af07f92189b560098c38 (patch)
treec3212e00bc6ac2dfff336c1c46dff7109227ef22
parent6ecbb839a61c80ed1b96705acc8cb01b7fd8fdfa (diff)
Fix rEFInd not starting textonly mode on mac
This overrides both files to ensure that the rEFIND starts in textonly mode regardless of the version/order of boot
-rw-r--r--roles/bootstrap/tasks/install-ubuntu.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/roles/bootstrap/tasks/install-ubuntu.yml b/roles/bootstrap/tasks/install-ubuntu.yml
index 89f351f..9d32543 100644
--- a/roles/bootstrap/tasks/install-ubuntu.yml
+++ b/roles/bootstrap/tasks/install-ubuntu.yml
@@ -75,8 +75,11 @@
- name: "Configure rEFInd base settings"
ansible.builtin.template:
src: "refind.conf.j2"
- dest: "{{ mnt_boot_path }}/EFI/BOOT/refind.conf"
+ dest: "{{ item }}"
mode: "0644"
+ loop:
+ - "{{ mnt_boot_path }}/EFI/BOOT/refind.conf"
+ - "{{ mnt_boot_path }}/EFI/refind/refind.conf"
# NOTE: this is skipped because the docker test doesn't have proper EFI/BOOT directory created
tags: ["molecule-notest"]