We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b0b8f9 commit 2e3767bCopy full SHA for 2e3767b
init/modules/EESSI/2023.06.lua
@@ -173,6 +173,13 @@ if isDir(eessi_module_path_accel) then
173
eessiDebug("Using site accelerator modules at: " .. eessi_module_path_site_accel)
174
end
175
176
+-- allow sites to add a family directive to the EESSI module,
177
+-- e.g. for preventing that users load two different/incompatible stacks at the same time
178
+family_name = os.getenv("EESSI_MODULE_FAMILY_NAME")
179
+if family_name then
180
+ family(family_name)
181
+end
182
+
183
-- allow sites to make the EESSI module sticky by defining EESSI_MODULE_STICKY (to any value)
184
load_message = "Module for EESSI/" .. eessi_version .. " loaded successfully"
185
if os.getenv("EESSI_MODULE_STICKY") then
0 commit comments