diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-01-22 22:50:29 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-01-22 22:50:29 +0100 |
| commit | 00893e614b16b3a98f0c0275f817addbf8b9a159 (patch) | |
| tree | 6109a317d3662d329ebd89ce94855ea8b836eecf | |
| parent | 6e47923b6536a17bdf38336f7c244426f5fc482a (diff) | |
Workaround tuigreet
Issue: https://unix.stackexchange.com/questions/796530/systemd-message-litters-tuigreet-greetd
Workarounds:
- https://github.com/apognu/tuigreet/issues/190
- https://todo.sr.ht/~kennylevinsen/greetd/26#event-96767
- https://wiki.archlinux.org/title/Greetd#Prevent_systemd_messages_from_overwrting_console-based_greeterd
| -rw-r--r-- | roles/bootstrap/tasks/install-archlinux.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/bootstrap/tasks/install-archlinux.yml b/roles/bootstrap/tasks/install-archlinux.yml index ffd2f37..0140f31 100644 --- a/roles/bootstrap/tasks/install-archlinux.yml +++ b/roles/bootstrap/tasks/install-archlinux.yml @@ -50,8 +50,8 @@ dest: "{{ mnt_root_path }}/boot/refind_linux.conf" mode: "0644" content: | - "Boot with defaults" "root=PARTLABEL={{ partition_root.name }} rw" - "Boot to terminal" "root=PARTLABEL={{ partition_root.name }} rw systemd.unit=multi-user.target" + "Boot with defaults" "root=PARTLABEL={{ partition_root.name }} rw console=tty1" + "Boot to terminal" "root=PARTLABEL={{ partition_root.name }} rw console=tty1 systemd.unit=multi-user.target" - name: "Configure rEFInd settings" ansible.builtin.copy: |
