mirror of
https://github.com/envmodules/modules.git
synced 2026-06-03 00:33:18 +08:00
Take into account Modules initialization configurations found in ``etc`` directory if they exist rather in ``init`` directory. If ``initrc`` configuration file is found in ``etcdir`` then it is preferred over ``modulerc`` file in ``initdir``. Following the same trend, ``modulespath`` configuration file is found in ``etcdir`` then it is preferred over ``.modulespath`` file in ``initdir``.
37 lines
2.3 KiB
Python
37 lines
2.3 KiB
Python
import os, re, subprocess
|
|
|
|
@quarantinesupport@# define modules runtine quarantine configuration
|
|
@quarantinesupport@@setquarvars@os.environ['MODULES_RUN_QUARANTINE'] = '@RUN_QUARANTINE@'
|
|
@quarantinesupport@@setquarvars@@os.environ['RUNENV_VAR'] = 'RUNENV_VAL'@
|
|
@quarantinesupport@@notsetquarvars@#os.environ['MODULES_RUN_QUARANTINE'] = 'ENVVARNAME'
|
|
@quarantinesupport@@notsetquarvars@
|
|
@quarantinesupport@# setup quarantine if defined
|
|
@quarantinesupport@_mlre = os.environ.copy()
|
|
@quarantinesupport@if 'MODULES_RUN_QUARANTINE' in os.environ:
|
|
@quarantinesupport@ for _mlv in os.environ['MODULES_RUN_QUARANTINE'].split():
|
|
@quarantinesupport@ if re.match('^[A-Za-z_][A-Za-z0-9_]*$', _mlv):
|
|
@quarantinesupport@ if _mlv in os.environ:
|
|
@quarantinesupport@ _mlre[_mlv + '_modquar'] = os.environ[_mlv]
|
|
@quarantinesupport@ _mlrv = 'MODULES_RUNENV_' + _mlv
|
|
@quarantinesupport@ if _mlrv in os.environ:
|
|
@quarantinesupport@ _mlre[_mlv] = os.environ[_mlrv]
|
|
@quarantinesupport@ else:
|
|
@quarantinesupport@ _mlre[_mlv] = ''
|
|
@quarantinesupport@
|
|
# define module command and surrounding initial environment (default value
|
|
# for MODULESHOME, MODULEPATH, LOADEDMODULES and parse of init config files)
|
|
@quarantinesupport@exec(subprocess.Popen(['@TCLSH@', '@libexecdir@/modulecmd.tcl', 'python', 'autoinit'], stdout=subprocess.PIPE, env=_mlre).communicate()[0])
|
|
@notquarantinesupport@exec(subprocess.Popen(['@TCLSH@', '@libexecdir@/modulecmd.tcl', 'python', 'autoinit'], stdout=subprocess.PIPE).communicate()[0])
|
|
@quarantinesupport@
|
|
@quarantinesupport@# clean temp variable used to setup quarantine
|
|
@quarantinesupport@del _mlre
|
|
@compatversion@
|
|
@compatversion@# redefine module command if compat version has been activated
|
|
@compatversion@if 'MODULES_USE_COMPAT_VERSION' in os.environ and os.environ['MODULES_USE_COMPAT_VERSION'] == '1':
|
|
@compatversion@ os.environ['MODULES_CMD'] = '@libexecdir@/modulecmd-compat'
|
|
@compatversion@ # set module command in accordance with active version
|
|
@compatversion@ def module(command, *arguments):
|
|
@compatversion@ exec(subprocess.Popen(['@libexecdir@/modulecmd-compat', 'python', command] + list(arguments), stdout=subprocess.PIPE).communicate()[0])
|
|
@compatversion@ # return value as done on new main version
|
|
@compatversion@ return True
|