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:
parent
0912d26b30
commit
6217b73598
|
@ -40,6 +40,10 @@ in {
|
||||||
ExecStart = "${cfg.package}/bin/listenbrainz-mpd";
|
ExecStart = "${cfg.package}/bin/listenbrainz-mpd";
|
||||||
Restart = "always";
|
Restart = "always";
|
||||||
RestartSec = 5;
|
RestartSec = 5;
|
||||||
|
Type = if lib.versionAtLeast cfg.package.version "2.3.2" then
|
||||||
|
"notify"
|
||||||
|
else
|
||||||
|
"simple";
|
||||||
};
|
};
|
||||||
Install.WantedBy = [ "default.target" ];
|
Install.WantedBy = [ "default.target" ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue