-
Notifications
You must be signed in to change notification settings - Fork 47
/
create_lmodrc.py
executable file
·54 lines (42 loc) · 1.31 KB
/
create_lmodrc.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python3
#
# Create lmodrc.lua configuration file for Lmod.
#
import os
import sys
DOT_LMOD = '.lmod'
# LMOD_RC file is the place to define properties, see https://lmod.readthedocs.io/en/latest/145_properties.html
TEMPLATE_LMOD_RC = """propT = {
}
scDescriptT = {
{
["dir"] = "%(prefix)s/%(dot_lmod)s/cache",
["timestamp"] = "%(prefix)s/%(dot_lmod)s/cache/timestamp",
},
}
"""
def error(msg):
sys.stderr.write("ERROR: %s\n" % msg)
sys.exit(1)
if len(sys.argv) != 2:
error("Usage: %s <software prefix>" % sys.argv[0])
prefix = sys.argv[1]
if not os.path.exists(prefix):
error("Prefix directory %s does not exist!" % prefix)
lmodrc_path = os.path.join(prefix, DOT_LMOD, 'lmodrc.lua')
# Lmod itself doesn't care about the accelerator subdir so remove this duplication from
# the target path (if it exists)
accel_subdir = os.getenv("EESSI_ACCELERATOR_TARGET")
if accel_subdir:
lmodrc_path = lmodrc_path.replace("/accel/%s" % accel_subdir, '')
lmodrc_txt = TEMPLATE_LMOD_RC % {
'dot_lmod': DOT_LMOD,
'prefix': prefix,
}
try:
os.makedirs(os.path.dirname(lmodrc_path), exist_ok=True)
with open(lmodrc_path, 'w') as fp:
fp.write(lmodrc_txt)
except (IOError, OSError) as err:
error("Failed to create %s: %s" % (lmodrc_path, err))
print(lmodrc_path)