
2025-08-18 23:42:17
Did run into an issue with `jellyfin` starting a bit too fast and somehow trying to read the metadata directory _before_ it's available. I added a delay to the `/etc/systemd/system/jellyfin.service.d/jellyfin.service.conf` by adding a line to the `[Service]`:
```
[Service]
ExecStartPre=bash -c "while [ ! -d /opt/jellyfin/metadata ]; do sleep 1; done"
```
This fixes the issue and now the service comes up after reboot without restarting the service man…