Skip to content
Snippets Groups Projects
Commit 086e908f authored by Xueshan Feng's avatar Xueshan Feng
Browse files

Fix libtcmalloc path on Buster.

parent 91850415
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,13 @@ then
export LD_PRELOAD="/usr/lib/libtcmalloc_minimal.so.4"
fi
# And the newest version of tcmalloc is the best of all worlds.
# Use it if is available.
if [ -e /usr/lib/x86_64-linux-gnu/libtcmalloc_minimal.so.4 ]
then
export LD_PRELOAD="/usr/lib/x86_64-linux-gnu/libtcmalloc_minimal.so.4"
fi
# Specify a sentinel file that matches current practice
SLAPD_SENTINEL_FILE=/etc/noldap
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment