···
# configuration file can be generated by http://slurm.schedmd.com/configurator.html
configFile = pkgs.writeText "slurm.conf"
+
${optionalString (cfg.controlMachine != null) ''controlMachine=${cfg.controlMachine}''}
+
${optionalString (cfg.controlAddr != null) ''controlAddr=${cfg.controlAddr}''}
+
${optionalString (cfg.nodeName != null) ''nodeName=${cfg.nodeName}''}
+
${optionalString (cfg.partitionName != null) ''partitionName=${cfg.partitionName}''}
···
+
enable = mkEnableOption "slurm control daemon";
+
enable = mkEnableOption "slurm rlient daemon";
+
controlMachine = mkOption {
+
type = types.nullOr types.str;
+
The short hostname of the machine where SLURM control functions are
+
executed (i.e. the name returned by the command "hostname -s", use "tux001"
+
rather than "tux001.my.com").
+
controlAddr = mkOption {
+
type = types.nullOr types.str;
+
default = cfg.controlMachine;
+
Name that ControlMachine should be referred to in establishing a
+
type = types.nullOr types.str;
+
example = "linux[1-32] CPUs=1 State=UNKNOWN";
+
Name that SLURM uses to refer to a node (or base partition for BlueGene
+
systems). Typically this would be the string that "/bin/hostname -s"
+
returns. Note that now you have to write node's parameters after the name.
+
partitionName = mkOption {
+
type = types.nullOr types.str;
+
example = "debug Nodes=linux[1-32] Default=YES MaxTime=INFINITE State=UP";
+
Name by which the partition may be referenced. Note that now you have
+
to write patrition's parameters after the name.
···
the end of the slurm configuration file.
···
systemd.services.slurmd = mkIf (cfg.client.enable) {
path = with pkgs; [ slurm-llnl coreutils ];
wantedBy = [ "multi-user.target" ];
after = [ "systemd-tmpfiles-clean.service" ];
···
ExecStart = "${pkgs.slurm-llnl}/bin/slurmd -f ${configFile}";
PIDFile = "/run/slurmd.pid";
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
···
ExecStart = "${pkgs.slurm-llnl}/bin/slurmctld";
PIDFile = "/run/slurmctld.pid";
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
environment = { SLURM_CONF = "${configFile}"; };