1. 05 Dec, 2018 5 commits
  2. 04 Dec, 2018 7 commits
  3. 03 Dec, 2018 2 commits
  4. 29 Nov, 2018 2 commits
  5. 28 Nov, 2018 5 commits
  6. 27 Nov, 2018 7 commits
  7. 26 Nov, 2018 1 commit
  8. 23 Nov, 2018 2 commits
  9. 22 Nov, 2018 1 commit
    • Morris Jette's avatar
      Add NO_KILL env var support · 45d4d019
      Morris Jette authored
      Add support for SALLOC/SBATCH/SLURM_NO_KILL environment variables.
      Add salloc/sbatch/srun support for optional "--no-kill=off" option to
      disable the environment variables.
      Needed for a USGS procurement.
      45d4d019
  10. 21 Nov, 2018 3 commits
  11. 20 Nov, 2018 3 commits
  12. 15 Nov, 2018 2 commits
    • Michael Hinton's avatar
      Tweak sdiag gettimeofday() output for greater clarity. · 877f2b00
      Michael Hinton authored
      Bug 4961.
      877f2b00
    • Marshall Garey's avatar
      Fix srun --prolog=none and --epilog=none to behave as documented · 5ab10c85
      Marshall Garey authored
      The srun man page states that --prolog=none or --epilog=none would
      prevent the SrunProlog or SrunEpilog scripts defined in slurm.conf from
      running. However, with SLURM_TEST_EXEC set in the environment, srun
      would look for a script named "none" and run it if found. If not found,
      then srun would print an error message, but the SrunProlog or
      SrunEpilog would (correctly) not run.
      
      * Prevent srun from running a script named "none" that is in the path.
      * This also prevents the error message if it is not found.
      
      Bug 5948.
      5ab10c85