diff options
author | Christian Hesse <mail@eworm.de> | 2015-12-01 08:53:35 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-12-15 21:17:04 +0100 |
commit | 77aaf1baee9a3d5202df32c87ce54e14ed56ee70 (patch) | |
tree | 41c491e1b8339a6dcc29e971e489f3d9fb2fba54 /systemd | |
parent | 6626c2d00da4a4a756ba16d612156d4895a502ee (diff) |
fix LimitRTTIME in systemd unit file
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 <mail@eworm.de>
Diffstat (limited to 'systemd')
-rw-r--r-- | systemd/mpd.service.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/systemd/mpd.service.in b/systemd/mpd.service.in index de91eb4d5..0e8eb84ba 100644 --- a/systemd/mpd.service.in +++ b/systemd/mpd.service.in @@ -7,7 +7,7 @@ ExecStart=@prefix@/bin/mpd --no-daemon # allow MPD to use real-time priority 50 LimitRTPRIO=50 -LimitRTTIME=-1 +LimitRTTIME=infinity [Install] WantedBy=multi-user.target |