Skip to content
Snippets Groups Projects
Commit f182f0f9 authored by Moe Jette's avatar Moe Jette
Browse files
parent 7700e4e0
No related branches found
No related tags found
No related merge requests found
......@@ -501,6 +501,12 @@ documents those changes that are of interest to users and admins.
"man wiki.conf" for more information.
-- Add "JobAggregationTime=#" field SchedulerParameter configuration parameter
output.
-- Modify init.d/slurm and slurmdbd scripts to prevent the possible
inadvertent inclusion of "." in LD_LIBRARY_PATH environment variable.
To fail, the script would need to be executed by user root or SlurmUser
without the LD_LIBRARY_PATH environment variable set and there would
have to be a maliciously altered library in the working directory (it
probably can not be exploited).
* Changes in SLURM 2.1.13
=========================
......
......@@ -81,6 +81,13 @@ if [ ! -f $CONFDIR/slurm.conf ]; then
exit 1
fi
# setup library paths for slurm and munge support
if [ "$LD_LIBRARY_PATH" = "" ]; then
export LD_LIBRARY_PATH="$LIBDIR"
else
export LD_LIBRARY_PATH="$LIBDIR:$LD_LIBRARY_PATH"
fi
start() {
prog=$1
shift
......
......@@ -69,6 +69,13 @@ if [ ! -f $CONFDIR/slurmdbd.conf ]; then
exit 1
fi
# setup library paths for slurm and munge support
if [ "$LD_LIBRARY_PATH" = "" ]; then
export LD_LIBRARY_PATH="$LIBDIR"
else
export LD_LIBRARY_PATH="$LIBDIR:$LD_LIBRARY_PATH"
fi
start() {
prog=$1
shift
......
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