From a3ffef2d8fe7bf377bd895423cea422e8fea1887 Mon Sep 17 00:00:00 2001 From: edwardsp Date: Tue, 3 Feb 2026 14:23:09 +0000 Subject: [PATCH] Fix newline at end of enroot.conf.template enroot fix: add trailing newline to enroot.conf.template The template file was missing a trailing newline after the last line `MELLANOX_VISIBLE_DEVICES all`. This caused the line to not be parsed by enroot, resulting in /dev/infiniband not being mounted in pyxis containers. --- azure-slurm-install/templates/enroot.conf.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-slurm-install/templates/enroot.conf.template b/azure-slurm-install/templates/enroot.conf.template index 8a104283..a6a5b284 100644 --- a/azure-slurm-install/templates/enroot.conf.template +++ b/azure-slurm-install/templates/enroot.conf.template @@ -6,4 +6,4 @@ ENROOT_SQUASH_OPTIONS -noI -noD -noF -noX -no-duplicates ENROOT_MOUNT_HOME y ENROOT_RESTRICT_DEV y ENROOT_ROOTFS_WRITABLE y -MELLANOX_VISIBLE_DEVICES all \ No newline at end of file +MELLANOX_VISIBLE_DEVICES all