listenbrainz-mpd: use sdnotify when possible

The ability for listenbrainz-mpd to notify systemd when it's ready was
added in 2.3.2:

https://codeberg.org/elomatreb/listenbrainz-mpd/releases/tag/v2.3.2
This commit is contained in:
Dee Anzorge 2024-01-13 18:52:33 +01:00 committed by GitHub
parent 0912d26b30
commit 6217b73598
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -40,6 +40,10 @@ in {
ExecStart = "${cfg.package}/bin/listenbrainz-mpd";
Restart = "always";
RestartSec = 5;
Type = if lib.versionAtLeast cfg.package.version "2.3.2" then
"notify"
else
"simple";
};
Install.WantedBy = [ "default.target" ];
};