From de2af7981011b1cb98ba26d92a252c7ec2c78eaa Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Date: Wed, 26 Apr 2023 13:29:28 +0200 Subject: [PATCH] Use xeon07 as control machine --- xeon07/slurm.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/xeon07/slurm.nix b/xeon07/slurm.nix index 379681d..48a77d7 100644 --- a/xeon07/slurm.nix +++ b/xeon07/slurm.nix @@ -3,10 +3,15 @@ { services.slurm = { client.enable = true; - controlMachine = "ssfhead"; + server.enable = true; + controlMachine = "xeon07"; clusterName = "owl"; nodeName = [ - "xeon[01-08] Sockets=2 CoresPerSocket=14 ThreadsPerCore=2 Feature=xeon" + "xeon[01-02,07] Sockets=2 CoresPerSocket=14 ThreadsPerCore=2 Feature=xeon" + ]; + + partitionName = [ + "xeon Nodes=xeon[01-02,07] Default=YES MaxTime=INFINITE State=UP" ]; }; }