Thanks for your answer!
Yeah, I don't need it, I just wanted the notifications (which I have connected for "healt_h issues" through Telegram) to stop.
Regarding your Windows comment, according to the wiki:
Alright, so... I actually made it work this way:
In /storage/.kodi/addons/service.lidarr/bin/lidarr.ctl,
add this line after the export that's aldready in there:
export PATH="${ADDON_DIR}/bin:$PATH"
I am not sure if this runs on every boot / service startup.
But you can also add this to /storage/config/autostart.sh so that it executes on boot:
export PATH="/storage/.kodi/addons/service.lidarr/bin:$PATH"
so it should become like this:
-----
#!/bin/sh
(sleep 3;
export PATH="/storage/.kodi/addons/service.lidarr/bin:$PATH"
# whatever other commands you might have in there
)&
-----
Copy fpcalc (I got it for x86_64 from the Chromaprint package) to /storage/.kodi/addons/service.lidarr/bin and give it executable permissions.
Start Lidarr.
This works well for me.
An alternative is to mount / as writable, copy fpcalc to /bin and that will work right away. BUT that may (will probably) be overwritten on system update.