Merge pull request #121336 from markuskowa/upd-slurm

nixos/slurm: 20.11.5.1 -> 20.11.6.1, improve security

authored by

markuskowa and committed by
GitHub
741ed21b b8336c2b

+3 -5
+1 -3
nixos/modules/services/computing/slurm/slurm.nix
··· 403 403 requires = [ "munged.service" "mysql.service" ]; 404 404 405 405 preStart = '' 406 - cp ${slurmdbdConf} ${configPath} 407 - chmod 600 ${configPath} 408 - chown ${cfg.user} ${configPath} 406 + install -m 600 -o ${cfg.user} -T ${slurmdbdConf} ${configPath} 409 407 ${optionalString (cfg.dbdserver.storagePassFile != null) '' 410 408 echo "StoragePass=$(cat ${cfg.dbdserver.storagePassFile})" \ 411 409 >> ${configPath}
+2 -2
pkgs/servers/computing/slurm/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "slurm"; 12 - version = "20.11.5.1"; 12 + version = "20.11.6.1"; 13 13 14 14 # N.B. We use github release tags instead of https://www.schedmd.com/downloads.php 15 15 # because the latter does not keep older releases. ··· 18 18 repo = "slurm"; 19 19 # The release tags use - instead of . 20 20 rev = "${pname}-${builtins.replaceStrings ["."] ["-"] version}"; 21 - sha256 = "1anzjv9sdl1a3j6sxsy2q8dy4dax1a4yqc9rnprlzymjkgb8hy75"; 21 + sha256 = "1c2dqqddw5bfb27smq7rqa7v1wymdj155ky50rbyvl36pmhc9djp"; 22 22 }; 23 23 24 24 outputs = [ "out" "dev" ];