From 866d68b74a7f36dc59d2bc86dccb72d21a08b65b Mon Sep 17 00:00:00 2001 From: "edward.safford" Date: Fri, 12 Aug 2022 12:52:14 +0000 Subject: [PATCH] Ref #14 Finalize lua run mods --- modulefiles/common-run.lua | 2 -- modulefiles/hera.gnu-run.lua | 2 ++ modulefiles/hera.intel-run.lua | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/modulefiles/common-run.lua b/modulefiles/common-run.lua index 46e0fd93..eb69ffad 100644 --- a/modulefiles/common-run.lua +++ b/modulefiles/common-run.lua @@ -3,8 +3,6 @@ Load common modules to run GSI Monitoring on all machines ]]) local wgrib2_ver=os.getenv("wgrib2_ver") or "2.0.8" ---local prod_util_ver=os.getenv("prod_util_ver") or "1.2.2" load(pathJoin("wgrib2", wgrib2_ver)) ---load(pathJoin("prod_util", prod_util_ver)) diff --git a/modulefiles/hera.gnu-run.lua b/modulefiles/hera.gnu-run.lua index acec8e46..fef7dc1d 100644 --- a/modulefiles/hera.gnu-run.lua +++ b/modulefiles/hera.gnu-run.lua @@ -6,10 +6,12 @@ prepend_path("MODULEPATH", "/scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/mo local hpc_ver=os.getenv("hpc_ver") or "1.1.0" local hpc_gnu_ver=os.getenv("hpc_gnu_ver") or "9.2.0" local grads_ver=os.getenv("grads_ver") or "2.2.1" +local prod_util_ver=os.getenv("prod_util_ver") or "1.2.2" load(pathJoin("hpc", hpc_ver)) load(pathJoin("hpc-gnu", hpc_gnu_ver)) load(pathJoin("grads", grads_ver)) +load(pathJoin("prod_util", prod_util_ver)) load("common-run") diff --git a/modulefiles/hera.intel-run.lua b/modulefiles/hera.intel-run.lua index 2d9ddd0a..f08a6b11 100644 --- a/modulefiles/hera.intel-run.lua +++ b/modulefiles/hera.intel-run.lua @@ -6,10 +6,12 @@ prepend_path("MODULEPATH", "/scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/mo local hpc_ver=os.getenv("hpc_ver") or "1.1.0" local hpc_intel_ver=os.getenv("hpc_intel_ver") or "18.0.5.274" local grads_ver=os.getenv("grads_ver") or "2.2.1" +local prod_util_ver=os.getenv("prod_util_ver") or "1.2.2" load(pathJoin("hpc", hpc_ver)) load(pathJoin("hpc-intel", hpc_intel_ver)) load(pathJoin("grads", grads_ver)) +load(pathJoin("prod_util", prod_util_ver)) load("common-run")