Skip to content
Snippets Groups Projects
Commit 1ff7252b authored by Don Lipari's avatar Don Lipari Committed by Morris Jette
Browse files

Modify pam module to work when configured NodeName and NodeHostname differ

bug 3473
parent d8376bec
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,7 @@ documents those changes that are of interest to users and administrators. ...@@ -3,6 +3,7 @@ documents those changes that are of interest to users and administrators.
* Changes in Slurm 17.02.1 * Changes in Slurm 17.02.1
========================== ==========================
-- Modify pam module to work when configured NodeName and NodeHostname differ.
* Changes in Slurm 17.02.0 * Changes in Slurm 17.02.0
========================== ==========================
......
...@@ -37,8 +37,7 @@ Description: ...@@ -37,8 +37,7 @@ Description:
Notes: Notes:
This module will not work on systems where the hostname returned by the This module will not work on systems where the hostname returned by the
gethostname() differs from SLURM node name. This includes front-end gethostname() differs from SLURM node name. This includes front-end
configurations (IBM BlueGene or Cray systems) or systems configured configurations (IBM BlueGene or Cray/ALPS systems).
in SLURM using the NodeHostName parameter.
rsh_kludge - The rsh service under RH71 (rsh-0.17-2.5) truncates the first rsh_kludge - The rsh service under RH71 (rsh-0.17-2.5) truncates the first
character of this message. The rsh client sends 3 NUL-terminated ASCII character of this message. The rsh client sends 3 NUL-terminated ASCII
strings: client-user-name, server-user-name, and command string. The strings: client-user-name, server-user-name, and command string. The
......
...@@ -341,6 +341,20 @@ _slurm_match_allocation(uid_t uid) ...@@ -341,6 +341,20 @@ _slurm_match_allocation(uid_t uid)
uid, nodename, j->job_id); uid, nodename, j->job_id);
authorized = 1; authorized = 1;
break; break;
} else {
char *nodename;
nodename = slurm_conf_get_nodename(hostname);
if (nodename) {
if (_hostrange_member(nodename,
j->nodes)) {
DBG ("user %ld allocated node %s in job %ld",
uid, nodename, j->job_id);
authorized = 1;
xfree(nodename);
break;
}
xfree(nodename);
}
} }
} }
} }
......
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