From: Christian Hesse <[email protected]> systemd does not understand LimitRTTIME=-1. For no limit we have to use the string 'infinity' (see systemd.exec(5)).
Signed-off-by: Christian Hesse <[email protected]> --- systemd/mpd.service.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systemd/mpd.service.in b/systemd/mpd.service.in index 6dce7d9..09a5ad2 100644 --- a/systemd/mpd.service.in +++ b/systemd/mpd.service.in @@ -8,7 +8,7 @@ ExecStart=@prefix@/bin/mpd --no-daemon # allow MPD to use real-time priority 50 LimitRTPRIO=50 -LimitRTTIME=-1 +LimitRTTIME=infinity # disallow writing to /usr, /bin, /sbin, ... ProtectSystem=yes -- 2.6.2 _______________________________________________ mpd-devel mailing list [email protected] http://mailman.blarg.de/listinfo/mpd-devel
