From b2a4eac2487ee2efb5def75fb9ec54f1c35e7dbd Mon Sep 17 00:00:00 2001 From: binhex Date: Mon, 30 Mar 2020 17:58:50 +0100 Subject: [PATCH] bufix for pgrep stack size issue --- build/root/install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build/root/install.sh b/build/root/install.sh index e1496d1..0a7d9d7 100644 --- a/build/root/install.sh +++ b/build/root/install.sh @@ -309,6 +309,10 @@ fi export APPLICATION="qbittorrent" +# set stack size from unlimited to prevent pgrep allocation memory bug +# see here for details on the bug (open) https://gitlab.com/procps-ng/procps/issues/152 +ulimit -s 8192 + EOF # replace env vars placeholder string with contents of file (here doc)