summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDr. Christian Tacke <58549698+ChristianTackeGSI@users.noreply.github.com>2020-04-01 15:07:41 +0200
committerGitHub <noreply@github.com>2020-04-01 08:07:41 -0500
commit97cfef320c3b601fbaea870aeba1f93b5dd69c20 (patch)
treee9a2e9843336ed81e696112b736fa0f6abd788f4
parenta4b3edd68a91543f62146919670e7627bd9e21c0 (diff)
downloadspack-97cfef320c3b601fbaea870aeba1f93b5dd69c20.tar.gz
spack-97cfef320c3b601fbaea870aeba1f93b5dd69c20.tar.bz2
spack-97cfef320c3b601fbaea870aeba1f93b5dd69c20.tar.xz
spack-97cfef320c3b601fbaea870aeba1f93b5dd69c20.zip
slurm: new version, system configuration path (#15466)
* Add version 18-08-9-1 * Add variant to allow setting the sysconfdir: See below About sysconfdir: slurm has a server and a client. To use the correct communication channel, the client needs to be able to read the correct config. This config is in PREFIX/etc. Let's assume one has the server part installed as a system package. This generally is a good idea, so that the server gets started during boot. This means, that the config is in /etc/slurm. If one now wants to use the client part (library!) via spack, one has a problem: spack's slurm looks in SPACK-PACKAGE-PREFIX/etc for the config. There needs to be a way to let the spack installed package use the system's config. So add a variant to override the path during build: sysconfdir=/etc/slurm. This is much like what happened in #15307 for munge.
-rw-r--r--var/spack/repos/builtin/packages/slurm/package.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/slurm/package.py b/var/spack/repos/builtin/packages/slurm/package.py
index bfa6621f07..daae7743a0 100644
--- a/var/spack/repos/builtin/packages/slurm/package.py
+++ b/var/spack/repos/builtin/packages/slurm/package.py
@@ -24,6 +24,7 @@ class Slurm(AutotoolsPackage):
homepage = 'https://slurm.schedmd.com'
url = 'https://github.com/SchedMD/slurm/archive/slurm-17-02-6-1.tar.gz'
+ version('18-08-9-1', sha256='32eb0b612ca18ade1e35c3c9d3b4d71aba2b857446841606a9e54d0a417c3b03')
version('18-08-0-1', sha256='62129d0f2949bc8a68ef86fe6f12e0715cbbf42f05b8da6ef7c3e7e7240b50d9')
version('17-11-9-2', sha256='6e34328ed68262e776f524f59cca79ac75bcd18030951d45ea545a7ba4c45906')
version('17-02-6-1', sha256='97b3a3639106bd6d44988ed018e2657f3d640a3d5c105413d05b4721bc8ee25e')
@@ -35,6 +36,8 @@ class Slurm(AutotoolsPackage):
variant('hdf5', default=False, description='Enable hdf5 support')
variant('readline', default=True, description='Enable readline support')
variant('pmix', default=False, description='Enable PMIx support')
+ variant('sysconfdir', default='PREFIX/etc', values=any,
+ description='Set system configuration path (possibly /etc/slurm)')
# TODO: add variant for BG/Q and Cray support
@@ -94,6 +97,10 @@ class Slurm(AutotoolsPackage):
else:
args.append('--without-pmix')
+ sysconfdir = spec.variants['sysconfdir'].value
+ if sysconfdir != 'PREFIX/etc':
+ args.append('--sysconfdir={0}'.format(sysconfdir))
+
return args
def install(self, spec, prefix):