因此,我试图在您加载模块文件时动态加载/卸载模块文件。我正在尝试以某种方式执行此操作,以便我可以卸载冲突的模块(而不是仅使用冲突变量,因为它只会引发错误)
但是,当我在一个试图卸载另一个文件的文件上调用模块加载时......第二个文件被加载而不是被卸载。示例如下:
test1 模块文件:
#%Module1.0
##
## Testing
##
if { [module-info mode load] && [is-loaded test2] } {
puts stderr "Unloading test2 (From test1)"
module unload test2
}
test2 模块文件:
#%Module1.0
##
## Test2
##
if { [module-info mode load] } {
puts stderr "Loading test2\n"
}
if { [module-info mode remove] } {
puts stderr "Unloading test2\n"
}
当我在加载 test2 时尝试加载 test1 时的输出:
root@host:/usr/local/modules# module load test1
Unloading test2 (From test1)
Loading test2
模块--版本输出:
VERSION=3.2.10
DATE=2012-12-21
AUTOLOADPATH=undef
BASEPREFIX="/usr"
BEGINENV=99
CACHE_AVAIL=undef
DEF_COLLATE_BY_NUMBER=undef
DOT_EXT=""
EVAL_ALIAS=1
HAS_BOURNE_FUNCS=1
HAS_BOURNE_ALIAS=1
HAS_TCLXLIBS=undef
HAS_X11LIBS=1
LMSPLIT_SIZE=1000
MODULEPATH="/usr/share/modules/modulefiles"
MODULES_INIT_DIR="/usr/Modules/3.2.10/init"
PREFIX="/usr/Modules/3.2.10"
TCL_VERSION="8.6"
TCL_PATCH_LEVEL="8.6.1"
TMP_DIR="/tmp"
USE_FREE=undef
VERSION_MAGIC=1
VERSIONPATH="/usr/share/modules/versions"
WANTS_VERSIONING=1
WITH_DEBUG_INFO=undef
有谁知道为什么或如何解决这个问题?是否有另一个命令可以放入卸载另一个模块的 Modulefile 中?或者有没有比使用模块更好的选择?
提前感谢您的阅读和帮助!