Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
f182f0f9
Commit
f182f0f9
authored
14 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
svn merge -r21131:21179
https://eris.llnl.gov/svn/slurm/branches/slurm-2.1
parent
7700e4e0
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
NEWS
+6
-0
6 additions, 0 deletions
NEWS
etc/init.d.slurm
+7
-0
7 additions, 0 deletions
etc/init.d.slurm
etc/init.d.slurmdbd
+7
-0
7 additions, 0 deletions
etc/init.d.slurmdbd
with
20 additions
and
0 deletions
NEWS
+
6
−
0
View file @
f182f0f9
...
...
@@ -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
=========================
...
...
This diff is collapsed.
Click to expand it.
etc/init.d.slurm
+
7
−
0
View file @
f182f0f9
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
etc/init.d.slurmdbd
+
7
−
0
View file @
f182f0f9
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment