Hi,
my root filesystem (including /boot) is mounted read-only, which makes the
service grub-common fail:
```text
% journalctl -b -u grub-common
Sep 08 21:15:44 systemd[1]: Starting grub-common.service - Record successful boot for GRUB...
Sep 08 21:15:44 grub-editenv[865]: grub-editenv: Fehler: »/boot/grub/grubenv« kann nicht geöffnet werden: Das Dateisystem ist nur lesbar.
Sep 08 21:15:44 systemd[1]: grub-common.service: Main process exited, code=exited, status=1/FAILURE
Sep 08 21:15:44 systemd[1]: grub-common.service: Failed with result 'exit-code'.
Sep 08 21:15:44 systemd[1]: Failed to start grub-common.service - Record successful boot for GRUB.
```
I've added an additional condition:
```text
[Unit]
ConditionPathIsReadWrite=/boot/grub/grubenv
```
Regards,
Jörg