1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-03-02 17:03:52 +00:00

debian: fix compatibility with systemd 215 on Jessie

Since FS-8788, this error is printed to the journal:

    [/lib/systemd/system/freeswitch.service:22] Failed to parse resource value, ignoring: 240K

It turns out that suffixes are only introduced in systemd 228 which is
not available in Debian Jessie. Use 240*1024, rounded up to a nice
human-readable number.
This commit is contained in:
Peter Wu 2016-05-25 15:27:12 +02:00
parent 93e401e78b
commit a8c497cbac

@ -19,7 +19,7 @@ Group=daemon
LimitCORE=infinity LimitCORE=infinity
LimitNOFILE=100000 LimitNOFILE=100000
LimitNPROC=60000 LimitNPROC=60000
LimitSTACK=240K LimitSTACK=250000
LimitRTPRIO=infinity LimitRTPRIO=infinity
LimitRTTIME=7000000 LimitRTTIME=7000000
IOSchedulingClass=realtime IOSchedulingClass=realtime