From 68a7161458923ec374adc16f5184dcd190fc3d38 Mon Sep 17 00:00:00 2001 From: Cory Martin Date: Mon, 13 May 2024 16:03:10 +0000 Subject: [PATCH] Update hera.intel.lua (#1109) @aerorahul was having issues loading modules on Hera. Turns out `krb5` is 1.20.1 on Hera and not 1.15.1, and seemingly has been since February. No idea why it is not complaining and instead loading this version, but this PR will have it loading the proper version. --- modulefiles/GDAS/hera.intel.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modulefiles/GDAS/hera.intel.lua b/modulefiles/GDAS/hera.intel.lua index d8e389058..109b1e938 100644 --- a/modulefiles/GDAS/hera.intel.lua +++ b/modulefiles/GDAS/hera.intel.lua @@ -47,7 +47,7 @@ load("atlas/0.35.1") load("sp/2.5.0") load("gsl-lite/0.37.0") load("libjpeg/2.1.0") -load("krb5/1.15.1") +load("krb5/1.20.1") load("libtirpc/1.3.3") load("hdf/4.2.15") load("jedi-cmake/1.4.0")