Hi In slurmctld:job_mgr.c job_suspend()/job_suspend2() both sharint the same check:
/* validate the request */
if ((uid != 0) && (uid != getuid())) {
error("SECURITY VIOLATION: Attempt to suspend job from user %u",
(int) uid);
rc = ESLURM_ACCESS_DENIED;
goto reply;
}
That pretty much means to me that job suspension (via scontrol suspend) is
allowed only to root and to SlurmUser
Is that intentional?
