Whamcloud - gitweb
LU-16515 tests: disable sanity test_118c/118d
[fs/lustre-release.git] / lustre.spec.in
1 # lustre.spec
2
3 # Declare rpmbuild --with/--without parameters
4 %bcond_without servers
5 %bcond_without ldiskfs
6 %bcond_with zfs
7 %bcond_without lustre_tests
8 %bcond_without lustre_utils
9 %bcond_without lustre_iokit
10 %bcond_without lustre_modules
11 %bcond_with snmp
12 %bcond_with gss
13 %bcond_with gss_keyring
14 %bcond_without manpages
15 %bcond_without shared
16 %bcond_without static
17 %bcond_with    systemd
18 %bcond_with mofed
19 %bcond_without mpi
20 %bcond_with kabi
21
22 # LUTF Turn off brp-python-precompile script as we don't want the python files
23 # to be compiled on installation
24 %global __os_install_post %(echo '%{__os_install_post}' | sed -e 's!/usr/lib[^[:space:]]*/brp-python-bytecompile[[:space:]].*$!!g')
25
26 # By default both gss and gss keyring are disabled.
27 # gss keyring requires the gss core. If the builder
28 # request gss_keyring we must enable gss core even if
29 # the builder attempts to disable gss.
30 %if %{with gss_keyring}
31     %define with_gss 1
32 %endif
33
34 %if %{without servers}
35     # --without servers overrides --with {ldiskfs|zfs}
36     # so undefine the internal variables set by bcond_*
37     %undefine with_ldiskfs
38     %undefine with_zfs
39 %endif
40
41 %if %{without shared} && %{without static}
42 # need exit to stop build because error only displays a message
43 %{error: you can't disable both library types}
44 %{exit 1}
45 %endif
46
47 # lustre_tests depends on lustre_utils
48 %if %{without lustre_utils}
49 %undefine with_lustre_tests
50 %endif
51
52 %{!?version: %global version @VERSION@}
53 # if you want a custom kernel version set it variable with $ver.$arch
54 %{!?kver:    %global kver    %(uname -r)}
55 # cut epoch for kmodtool
56 %define _kver %(echo %{kver} | sed -e 's/^[0-9]*://')
57 # trust version from kdir - but it can lost 'epoch'
58 %if %{defined kdir}
59         %define _take_kver 1
60 %endif
61 %if %{defined kobjdir}
62         %define _take_kobj 1
63 %endif
64 %{!?kdir:    %global kdir    /lib/modules/%{_kver}/source}
65 %{!?kobjdir: %global kobjdir %(if [ "%{kdir}" = "/lib/modules/%{_kver}/source" ]; then echo "/lib/modules/%{_kver}/build"; else echo "%{kdir}"; fi)}
66
67 %if 0%{?suse_version} >= 1310 && %{defined _take_kobj}
68         %global _flavor %(echo %{_kver} | sed -e 's/^.*-//')
69 %else
70         %global _flavor default
71 %endif
72
73 %if %{defined _take_kver}
74 # as an alternative to this implementation we could simply "make -C $kdir kernelversion"
75 %global kver %(files="include/generated/utsrelease.h include/linux/utsrelease.h include/linux/version.h"; for f in $files; do if test -r %{kobjdir}/$f && grep UTS_RELEASE %{kobjdir}/$f >/dev/null; then sed -ne '/^#define UTS_RELEASE/s/.*"\\(.*\\)"$/\\1/p' %{kobjdir}/$f; break; fi; done)
76 %define _kver %kver
77 %endif
78
79 # We set this because kernel_module_package has its own method of identifying
80 # which kernel to build against, and it is unlikely that its decision will
81 # match with Lustre's method of selecting which kernel to build against.
82 # By setting this variable, we override kernel_module_package's kernel
83 # selection with our selection.
84 # kmodtool failed to take a version if epoch set
85 %global kernel_version %_kver
86
87 # in order to get kernel symset and/or kernel module dependencies into
88 # the RPM, in order to support weak-modules, the internal dependency gen-
89 # erator needs to be disabled
90 # this is done with (reduce the double % down to a single %):
91 #
92 # %%global _use_internal_dependency_generator 0
93 #
94 # on SLES10, /usr/lib/rpm/macros already sets this, so no harm in also
95 # defining it here (until Suse changes their mind)
96 #
97 # on RHEL5, however, we do need to explicitly disable the internal dep-
98 # endency generator and allow the external one be used
99 # but since RedHat's kABI is only a subset of the total kernel ABI, it
100 # doesn't include all of the symbols we (or OFED for that matter) need
101 # until RedHat includes all of the symbols we need in their symsets we
102 # cannot support weak-modules
103 # we did e-mail the maintainer of all of this stuff @redhat but got no
104 # response from them
105 #%%global _use_internal_dependency_generator 0
106
107 %if 0%{?rhel} > 7 || 0%{?fedora} > 33
108 ## SUSE uses another tool for provides:
109 ## https://github.com/openSUSE/kernel-source/blob/master/patches.rpmify/Add-ksym-provides-tool.patch
110 %global __find_provides   %{_sourcedir}/find-provides
111 %endif
112
113 # Set the package name prefix
114 %if %{undefined lustre_name}
115     %if %{with servers}
116         %global lustre_name lustre
117     %else
118         %global lustre_name lustre-client
119     %endif
120 %endif
121
122 %if %{with lustre_modules}
123 %if %{undefined kmoddir}
124     %if %{defined kernel_module_package_moddir}
125         %global kmoddir %{kernel_module_package_moddir}
126     %else
127         %if %{defined suse_kernel_module_package}
128             %global kmoddir updates
129         %else
130             %global kmoddir extra
131         %endif
132     %endif
133 %endif
134
135 %global modules_fs_path /lib/modules/%{_kver}/%{kmoddir}
136 # requires want to set a version including epoch
137 %global krequires %(echo %{kver} | sed -e 's/\.x86_64$//' -e 's/\.i[3456]86$//' -e 's/-smp$//' -e 's/-bigsmp$//' -e 's/[-.]ppc64$//' -e 's/\.aarch64$//' -e 's/-default$//' -e 's/-%{_flavor}//')
138
139 %if "%{_vendor}" == "redhat" || "%{_vendor}" == "fedora" || "%{_vendor}" == "openEuler"
140         %global requires_kmod_name kmod-%{lustre_name}
141         %global requires_kmod_osd_zfs_name kmod-%{lustre_name}-osd-zfs
142         %if %{with lustre_tests}
143                 %global requires_kmod_tests_name kmod-%{lustre_name}-tests
144         %endif
145         %global requires_kmod_version %{version}
146 #for Suse
147 %else
148         %global requires_kmod_name %{lustre_name}-kmp
149         %global requires_kmod_osd_zfs_name %{lustre_name}-osd-zfs-kmp
150         %if %{with lustre_tests}
151                 %global requires_kmod_tests_name %{lustre_name}-tests-kmp
152         %endif
153         %if 0%{?suse_version} >= 1200
154                 %global requires_kmod_version %{version}_k%(echo %{krequires} | sed -r 'y/-/_/; s/^(2\.6\.[0-9]+)_/\\1.0_/;')
155         %else
156                 %global requires_kmod_version %{version}_%(echo %{krequires} | sed -r 'y/-/_/; s/^(2\.6\.[0-9]+)_/\\1.0_/;')
157         %endif
158 %endif
159 %endif
160
161 # RHEL >= 7 comes with systemd
162 %if 0%{?rhel} >= 7
163 %define with_systemd 1
164 %endif
165
166 # Fedora >= 15 comes with systemd, but only >= 18 has
167 # the proper macros
168 %if 0%{?fedora} >= 18
169 %define with_systemd 1
170 %endif
171
172 # opensuse >= 12.1 comes with systemd, but only >= 13.1
173 # has the proper macros
174 %if 0%{?suse_version} >= 1310
175 %define with_systemd 1
176 %endif
177
178 # openEuler comes with systemd
179 %if "%{_vendor}" == "openEuler"
180 %define with_systemd 1
181 %endif
182
183 %{!?mpi_name: %global mpi_name openmpi}
184
185 Summary: Lustre File System
186 Name: %{lustre_name}
187 Version: %{version}
188 Release: 1%{?dist}
189 License: GPL-2.0-only AND LGPL-2.1-or-later
190 %if 0%{?suse_version} >= 1310
191 # SUSE needs Group for the kernel_module_package macro
192 Group: System/Kernel
193 %endif
194 Source: lustre-%{version}.tar.gz
195 Source1: kmp-lustre.preamble
196 Source2: kmp-lustre.files
197 Source3: kmp-lustre-osd-ldiskfs.preamble
198 Source4: kmp-lustre-osd-ldiskfs.files
199 Source5: kmp-lustre-osd-zfs.preamble
200 Source6: kmp-lustre-osd-zfs.files
201 Source7: kmp-lustre-tests.files
202 Source8: find-provides
203 Source9: find-provides.ksyms
204 URL: https://wiki.whamcloud.com/
205 BuildRoot: %{_tmppath}/lustre-%{version}-root
206 %if %{with lustre_modules}
207 Requires: %{requires_kmod_name} = %{requires_kmod_version}
208 %endif
209 %if %{with lustre_tests_lutf}
210 Requires: python3 >= 3.6.0
211 BuildRequires: python3-devel >= 3.6.0, swig
212 %endif
213 BuildRequires: libtool pkgconfig(yaml-0.1) pkgconfig(zlib) pkgconfig(libnl-3.0) flex bison
214 %if "%{_vendor}" == "redhat"
215 BuildRequires: redhat-rpm-config
216 BuildRequires: pkgconfig
217 %else
218 %if "%{_vendor}" == "openEuler"
219 BuildRequires: openEuler-rpm-config
220 %endif
221 BuildRequires: pkg-config
222 %endif
223 %if %{with gss}
224 BuildRequires: krb5-devel openssl-devel
225 %endif
226 %if %{with servers}
227 Requires: %{name}-osd
228 Requires: %{name}-osd-mount
229 Obsoletes: lustre-server < %{version}
230 Provides: lustre-server = %{version}-%{release}
231 %endif
232 Obsoletes: lustre-client < %{version}
233 Provides: lustre-client = %{version}-%{release}
234 %if "%{_vendor}" == "redhat" || "%{_vendor}" == "fedora" || "%{_vendor}" == "openEuler"
235 #suse don't support selinux
236 BuildRequires: pkgconfig(libselinux)
237 %endif
238 %if %{with lustre_modules}
239 %if %{with mofed}
240 BuildRequires: mlnx-ofa_kernel-devel
241 %if "%{_vendor}" == "redhat" || "%{_vendor}" == "openEuler"
242 Requires: kmod-mlnx-ofa_kernel
243 %else
244 Requires: mlnx-ofa_kernel-kmp
245 %endif
246 %endif
247 %if 0%{?rhel} >= 8 || "%{_vendor}" == "openEuler"
248 BuildRequires: kernel-rpm-macros
249 %endif
250 %if 0%{?suse_version} >= 1530
251 BuildRequires: rpm-build >= 4.14.3
252 %endif
253 BuildRequires: %kernel_module_package_buildreqs
254 # need to provide a /usr/lib/${uname -r)/build dir
255 BuildRequires: kernel
256 %if "%{_vendor}" == "redhat"
257 %if %{with kabi}
258 BuildRequires: kernel-abi-whitelists
259 %endif
260 %endif
261 %endif
262
263 %if %{with systemd}
264 Requires(post): systemd
265 Requires(preun): systemd
266 Requires(postun): systemd
267 BuildRequires: pkgconfig(systemd)
268 %endif
269
270 %description
271 Userspace tools and files for the Lustre file system.
272
273 %if %{with lustre_modules}
274 %if 0%{?rhel} == 7
275 # until we have achieved full kABI compatibility we need to
276 # restrict the kernel range that can be used to the kernel
277 # version from the RHEL minor release
278 # this is supposed to be done for kmods automatically but
279 # RHBZ#1467319 seems to be getting in the way
280 # this is true for el7.0 through el7.4
281 %define preamble %{expand:%(
282 TMPFILE=`mktemp`
283 cat %{SOURCE1} > $TMPFILE
284 kver=%{kernel_version}
285 linuxversion=${kver%%%%-*}
286 linuxrelease=${kver##*-}
287 kabiminor=${linuxrelease%%%%.*}
288 echo "Requires:       kernel < $linuxversion-$((kabiminor+1)), kernel >= $linuxversion-$((kabiminor))" >> $TMPFILE
289 echo $TMPFILE
290 )}
291 %else
292 %define preamble %{SOURCE1}
293 %endif
294 %kernel_module_package -n %{name} -p %preamble -f %SOURCE2 %{_flavor}
295
296 %if %{with ldiskfs}
297 %kernel_module_package -n %{name}-osd-ldiskfs -p %SOURCE3 -f %SOURCE4 %{_flavor}
298 %if %{with lustre_utils}
299 %package osd-ldiskfs-mount
300 Summary: Lustre mount's ldiskfs-specific helper library
301 BuildRequires: e2fsprogs-devel >= 1.44.3 pkgconfig(mount)
302 Requires: ldiskfsprogs > 1.45.6
303 Provides: lustre-osd-mount = %{version}
304 Provides: %{name}-osd-mount = %{version}
305 Obsoletes: %{name}-osd-mount < %{version}
306 Obsoletes: lustre-osd-mount < %{version}
307
308 %description osd-ldiskfs-mount
309 Provide a shared library (dso) that can be loaded into various
310 lustre tools (mount/mkfs) to provide support for ldisfs
311
312 # with lustre_utils
313 %endif
314 # with ldiskfs
315 %endif
316
317 %if %{with zfs}
318 %kernel_module_package -n %{name}-osd-zfs -p %SOURCE5 -f %SOURCE6 %{_flavor}
319 %if %{with lustre_utils}
320 %package osd-zfs-mount
321 Summary: Lustre mount's zfs-specific helper library
322 BuildRequires: pkgconfig(mount)
323 Provides: %{name}-osd-mount = %{version}
324 Obsoletes: lustre-osd-mount < %{version}
325 # Tests also require zpool from zfs package:
326 Requires: zfs
327 Requires: %{requires_kmod_osd_zfs_name}
328
329 %description osd-zfs-mount
330 Provide a shared library (dso) that can be loaded into various
331 lustre tools (mount/mkfs) to provide support for ZFS.
332
333 # with lustre_utils
334 %endif
335 # with zfs
336 %endif
337 # with lustre_modules
338 %endif
339
340 %if %{with servers}
341 %package resource-agents
342 Summary: HA Resuable Cluster Resource Scripts for Lustre
343 Requires: %{name}
344 Requires: resource-agents
345
346 %description resource-agents
347 A set of scripts to operate Lustre resources in a High Availablity
348 environment for both Pacemaker and rgmanager.
349 %endif
350
351 %package devel
352 Summary: Lustre include headers
353 Provides: lustre-devel = %{version}
354 Requires: %{lustre_name} = %{version}
355 %if %{with lustre_modules}
356 Requires: %{requires_kmod_name} = %{requires_kmod_version}
357 %endif
358
359 %description devel
360 This package contains the header files needed for building additional
361 applications against the Lustre / LNet utilities libraries.
362
363 :> lustre-devel.files
364
365 %if %{with lustre_tests}
366 %package tests
367 Summary: Lustre testing framework
368 Provides: %{name}-tests = %{version}
369 %if %{with lustre_iokit}
370 Requires: %{name} = %{version}, lustre-iokit
371 %else
372 Requires: %{name} = %{version}
373 %endif
374 Requires: lustre-devel = %{version}
375 %if 0%{?rhel} >= 8 || 0%{?suse_version} >= 1500
376 Requires: python3 >= 3.6.0, python3-PyYAML
377 %endif
378 %if %{with lustre_modules}
379 Requires: %{requires_kmod_name} = %{requires_kmod_version}
380 Requires: %{requires_kmod_tests_name} = %{requires_kmod_version}
381 %endif
382 %if %{with lustre_tests_lutf}
383 Requires: python3 >= 3.6.0
384 %endif
385 Requires: attr, rsync, perl, lsof, /usr/bin/getconf
386 %if %{with mpi}
387 %if "%{mpi_name}" == "mpich"
388 BuildRequires: mpich-devel
389 %endif
390 %if "%{mpi_name}" == "openmpi"
391 %if "%{_vendor}" == "redhat" || "%{_vendor}" == "openEuler" || 0%{?suse_version} < 1500
392 BuildRequires: openmpi-devel
393 %else
394 BuildRequires: openmpi2-devel
395 %endif
396 # openmpi
397 %endif
398 # mpi
399 %endif
400
401 %description tests
402 This package contains a set of test binaries and scripts that are intended
403 to be used by the Lustre testing framework.
404
405 %if %{with lustre_modules}
406 %kernel_module_package -n %{name}-tests -f %SOURCE7 %{_flavor}
407 %endif
408 %endif
409
410 %if %{with lustre_iokit}
411 %package -n lustre-iokit
412 Summary: Collection of benchmark tools for a cluster with the Lustre file system
413 Requires: python3, sg3_utils
414
415 %description -n lustre-iokit
416 This package includes five tools:
417 sgpdd-survey:
418 A test of the 'bare metal' performance, bypassing as much of the kernel as we can. Uses the sgp_dd utility.
419
420 obdfilter-survey
421 This survey can be run in 3 modes to test disk I/O including the filesystem,
422 network I/O, and disk I/O via the network.  The script does sequential I/O
423 with varying numbers of threads and objects (files) by using lctl::test_brw
424 to drive the echo_client connected to local or remote obdfilter instances,
425 or remote obdecho instances.
426
427 ost-survey
428 This survey tests the client-to-disk performance of individual OSTs, and
429 ranks then for comparison.
430
431 stats-collect
432 This script will collect IO stats on a defined set of nodes.
433
434 ior-survey:
435 A script to run the IOR benchmark. The latest version can be downloaded from
436 http://www.llnl.gov/asci/purple/benchmarks/limited/ior/
437
438 mds-survey:
439 This survey tests the local metadata performance using the echo_client to drive
440 the MDD layer to perform operations. It is run with multiple threads (to
441 simulate MDT service threads) locally on the MDS node, and does not need Lustre
442 clients in order to run
443
444 lst-survey:
445 This survey tests LNet performance between a group of clients and servers.
446 %endif
447
448 %if 0%{?suse_version}
449 %debug_package
450 %endif
451 %prep
452 %setup -qn lustre-%{version}
453 ln lustre/ChangeLog ChangeLog-lustre
454 ln lnet/ChangeLog ChangeLog-lnet
455
456 %build
457 # Set an explicit path to our Linux tree, if we can.
458 cd $RPM_BUILD_DIR/lustre-%{version}
459
460 # Store the CFLAGS and LDFLAGS that would normally be used in the UTILS_CFLAGS
461 # and UTILS_LDFLAGS environment variables so that we use can them when compiling
462 # the user-space code in lustre/utils and lnet/utils. As of RHEL 8.0, the
463 # __global_* variants are deprecated in favour of build_cflags, etc. If neither
464 # style is available (e.g. on SLES), then these just end up as empty strings.
465 export UTILS_CFLAGS="%{?build_cflags:%{build_cflags}}%{!?build_cflags:%{?__global_cflags:%{__global_cflags}}}"
466 export UTILS_LDFLAGS="%{?build_ldflags:%{build_ldflags}}%{!?build_ldflags:%{?__global_ldflags:%{__global_ldflags}}}"
467
468 # RHEL7 on PPC64 needs __SANE_USERSPACE_TYPES__ defined so that __s64 and __u64
469 # are presented to user-land as long long instead of long long. Without this it
470 # will fail the format check whenever such a variable is printed.
471 %if 0%{?rhel}
472 %ifarch ppc64
473 export UTILS_CFLAGS="${UTILS_CFLAGS} -D__SANE_USERSPACE_TYPES__=1"
474 %endif
475 %endif
476
477 # Disable any hardening or annotation since this doesn't make sense for
478 # kernel code, and reset "optflags" so that the vendor's overzealous flags don't
479 # create build failures.
480 %define optflags -g -O2 -Werror
481 %undefine _annotated_build
482 %undefine _hardened_build
483
484 CONFIGURE_ARGS="%{?configure_args}"
485 if [ -n "$CONFIGURE_ARGS" ]; then
486         # make sure %%kdir and %%kobjdir are not in the configure arguments
487         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux=[^ ][^ ]* \?//')
488         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux-obj=[^ ][^ ]* \?//')
489         # remove --with-kmp-moddir from configure arguments,
490         # it will be set --with-kmp-moddir=%%kmoddir
491         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-kmp-moddir=[^ ][^ ]* \?//')
492         # remove env variables from config cache built by initial configure,
493         # and create dedicated cache in temporary build directory
494         if [ -f "$CONFIG_CACHE_FILE" ]; then
495                 TMP_CONFIG_CACHE="$(mktemp --tmpdir newconfig-XXXXXXXX.cache)"
496                 sed -e "/ac_cv_env/d" \
497                     -e "/am_cv_CC_dependencies_compiler_type/d" \
498                     -e "/lb_cv_mpi_tests/d" \
499                        "$CONFIG_CACHE_FILE" > $TMP_CONFIG_CACHE
500                 CONFIGURE_ARGS="$CONFIGURE_ARGS --cache-file=$TMP_CONFIG_CACHE"
501         fi
502 fi
503
504 # we need to eval "configure" because $CONFIGURE_ARGS could have a quoted
505 # string in it which we don't want word splitted by the shell
506 # also remove (build|host|target) options because they will be specified
507 # inside $CONFIGURE_ARGS
508 # kmod tools/scripts require "name" directory with kernel modules
509
510 %if 0%{?rhel} >= 9
511 %define _configure eval ./configure
512 %define eval_configure %configure
513 %else
514 %define eval_configure %(echo -n '%configure' | sed -e 's#\./configure#eval ./configure#' -e 's/--\\(build\\|host\\|target\\)=[^ ][^ ]* //g')
515 %endif
516
517 %if %{with mpi}
518 %if "%{mpi_name}" == "mpich"
519 %{?_mpich_load}
520 %endif
521 %if "%{mpi_name}" == "openmpi"
522 %{?_openmpi_load}
523 %endif
524 # mpi
525 %endif
526
527 %if %{with mofed}
528         o2ib_path=$(find /usr/src/ofa_kernel/ -type d -name ofed_scripts | xargs dirname)
529         if [ -z "$o2ib_path" ]; then
530                 echo "ERROR: could not find OFED devel headers"
531                 exit 1
532         fi
533         if [ $(echo $o2ib_path | wc -w) -ge 2 ]; then
534                 echo "ERROR: multiple OFED versions installed"
535                 exit 1
536         fi
537 %endif
538
539 %eval_configure $CONFIGURE_ARGS \
540         %{?with_lustre_tests:--enable-tests}%{!?with_lustre_tests:--disable-tests} \
541         %{?with_lustre_utils:--enable-utils}%{!?with_lustre_utils:--disable-utils} \
542         %{?with_lustre_modules:--enable-modules}%{!?with_lustre_modules:--disable-modules} \
543         %{!?with_shared:--disable-shared} \
544         %{!?with_static:--disable-static} \
545         %{!?with_lustre_iokit:--disable-iokit} \
546         %{!?with_ldiskfs:--disable-ldiskfs} \
547         %{!?with_servers:--disable-server} \
548         %{!?with_zfs:--without-zfs} \
549         %{!?with_snmp:--disable-snmp} \
550         %{!?with_gss:--disable-gss} \
551         %{!?with_gss_keyring:--disable-gss-keyring} \
552         %{!?with_manpages:--disable-manpages} \
553         %{!?with_systemd:--with-systemdsystemunitdir=no} \
554         %{?with_systemd:--with-systemdsystemunitdir=%{_unitdir}} \
555         %{?with_mofed:--with-o2ib=$o2ib_path} \
556         --with-linux=%{kdir} \
557         --with-linux-obj=%{kobjdir} \
558         --with-kmp-moddir=%{kmoddir}/%{name}
559
560 %if %{with servers}
561 if ! grep -q define[[:space:]]*HAVE_SERVER_SUPPORT config.h 2> /dev/null; then
562         echo "Error: Server Support configured but not found"
563         false
564 fi
565 %endif
566
567 make %{?_smp_mflags} -s %{?make_args}
568
569 %if %{with mpi}
570 %if "%{mpi_name}" == "mpich"
571 %{?_mpich_unload}
572 %endif
573 %if "%{mpi_name}" == "openmpi"
574 %{?_openmpi_unload}
575 %endif
576 # mpi
577 %endif
578
579 %install
580
581 %if %{with mpi}
582 %if "%{mpi_name}" == "mpich"
583 %{?_mpich_load}
584 %endif
585 %if "%{mpi_name}" == "openmpi"
586 %{?_openmpi_load}
587 %endif
588 # mpi
589 %endif
590
591 make install DESTDIR=$RPM_BUILD_ROOT
592
593 %if %{with lustre_modules}
594 # RHEL's kernel_module_path macro expects that all the modules
595 # in a kmod package will be in modules_fs_path/<sub packagename>
596 # but Lustre installs all of the modules in a single pass into
597 # a shared location.  Since this is a restriction imposed by
598 # RHEL, we handle this here in the spec file rather than in
599 # Lustre's build system.  This is not expected to bother SLES's
600 # kernel_module_path macro.
601 basemodpath=$RPM_BUILD_ROOT%{modules_fs_path}/%{name}
602 %{__install} -D -m 0644 ${PWD}/Module.symvers %{buildroot}/Module.symvers
603 %if %{with ldiskfs}
604 mkdir -p $basemodpath-osd-ldiskfs/fs
605 mv $basemodpath/fs/osd_ldiskfs.ko $basemodpath-osd-ldiskfs/fs/osd_ldiskfs.ko
606 mv $basemodpath/fs/ldiskfs.ko $basemodpath-osd-ldiskfs/fs/ldiskfs.ko
607 %endif
608 %if %{with zfs}
609 mkdir -p $basemodpath-osd-zfs/fs
610 mv $basemodpath/fs/osd_zfs.ko $basemodpath-osd-zfs/fs/osd_zfs.ko
611 %endif
612 %if %{with lustre_tests}
613 mkdir -p $basemodpath-tests/fs
614 mv $basemodpath/fs/llog_test.ko $basemodpath-tests/fs/llog_test.ko
615 mkdir -p $RPM_BUILD_ROOT%{_libdir}/lustre/tests/kernel/
616 mv $basemodpath/fs/kinode.ko $RPM_BUILD_ROOT%{_libdir}/lustre/tests/kernel/
617 %endif
618 %endif
619
620 %if %{without mpi}
621 if [ -d $RPM_BUILD_ROOT%{_libdir}/openmpi ] ; then
622         rm -fr $RPM_BUILD_ROOT%{_libdir}/openmpi
623 fi
624 if [ -d $RPM_BUILD_ROOT%{_libdir}/mpich ] ; then
625         rm -fr $RPM_BUILD_ROOT%{_libdir}/mpich
626 fi
627 %endif
628
629 :> lustre.files
630
631 %if %{with servers} && %{with lustre_utils}
632 # The .ha_v2 extension identifies the heartbeat resource agent as using
633 # legacy syntax. Install a compatibility symlink to avoid conflicts when
634 # newer-style agents are added.
635 ln -s Lustre.ha_v2 $RPM_BUILD_ROOT%{_sysconfdir}/ha.d/resource.d/Lustre
636 echo '%{_sysconfdir}/ha.d/resource.d/Lustre.ha_v2' >>lustre.files
637 echo '%{_sysconfdir}/ha.d/resource.d/Lustre' >>lustre.files
638 %endif
639
640 # systemd is on redhat, fedora, and suse
641 %if %{with systemd}
642 echo '%{_unitdir}/lnet.service' >>lustre.files
643 %endif
644
645 %if "%{_vendor}" == "redhat" || "%{_vendor}" == "openEuler"
646 # The following scripts are Red Hat specific
647 %if %{with servers}
648 echo '%{_sysconfdir}/init.d/lustre' >>lustre.files
649 echo '%{_sysconfdir}/sysconfig/lustre' >>lustre.files
650 %if %{with gss_keyring}
651 echo '%{_sysconfdir}/init.d/lsvcgss' >>lustre.files
652 echo '%config(noreplace) %{_sysconfdir}/sysconfig/lsvcgss' >>lustre.files
653 %endif
654 %endif
655
656 %if %{without systemd}
657 echo '%{_sysconfdir}/init.d/lnet' >>lustre.files
658 %endif
659 %endif
660 %if %{with gss_keyring}
661 echo '%config(noreplace) %{_sysconfdir}/request-key.d/lgssc.conf' >>lustre.files
662 %endif
663
664 # fc18 needs 'x' permission for library files
665 find $RPM_BUILD_ROOT -name \*.so -type f -exec chmod +x {} \;
666
667 rm -f $RPM_BUILD_ROOT%{_libdir}/liblnetconfig.la
668 %if %{with static}
669 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.a' >>lustre.files
670 %endif
671 %if %{with shared}
672 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so' >>lustre-devel.files
673 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so.*' >>lustre.files
674 %endif
675
676 %if %{with ldiskfs}
677 echo '%{_libdir}/libiam.a' >>lustre.files
678 %endif
679
680 %if %{with snmp}
681 mkdir -p $RPM_BUILD_ROOT/%{_libdir}/lustre/snmp
682 echo '%{_libdir}/lustre/snmp' >>lustre.files
683 %endif
684
685 %if %{with lustre_utils}
686 mkdir -p $RPM_BUILD_ROOT/%{_datadir}/lustre
687 if [ -d $RPM_BUILD_ROOT%{_libdir}/lustre ] ; then
688         find $RPM_BUILD_ROOT%{_libdir}/@PACKAGE@ -name \*.la -type f -exec rm -f {} \;
689 fi
690 %endif
691
692 %if %{with lustre_modules}
693 echo '%{_prefix}/lib/firewalld/services/*.xml' >>lustre.files
694 # mark modules executable for find-debuginfo.sh
695 find $RPM_BUILD_ROOT/lib/modules -name \*.ko -type f -exec chmod u+x {} \;
696 %endif
697
698 rm -f $RPM_BUILD_ROOT%{_libdir}/liblustreapi.la
699
700 %if %{with lustre_tests}
701 :> lustre-tests.files
702 %if %{with mpi}
703 %if "%{mpi_name}" == "mpich"
704 %{?_mpich_load}
705 %endif
706 %if "%{mpi_name}" == "openmpi"
707 %{?_openmpi_load}
708 %endif
709 # mpi
710 %endif
711 echo '%{_libdir}/lustre/tests/*' >>lustre-tests.files
712 echo '%{_bindir}/mcreate' >>lustre-tests.files
713 echo '%{_bindir}/munlink' >>lustre-tests.files
714 echo '%{_bindir}/statx' >>lustre-tests.files
715 echo '%{_sbindir}/wirecheck' >>lustre-tests.files
716 echo '%{_sbindir}/wiretest' >>lustre-tests.files
717 if [ -n "$MPI_BIN" ]; then
718         echo "$MPI_BIN/*" >>lustre-tests.files
719 fi
720 %if %{with lustre_tests_lutf}
721 echo '%{_libdir}/lustre/tests/lutf/*' >>lustre-tests.files
722 %endif
723 %endif
724
725 %if %{with lustre_tests_lutf}
726 echo '%{_libdir}/lustre/tests/lutf/*' >>lustre-tests.files
727 %endif
728
729 %files devel -f lustre-devel.files
730 %defattr(-,root,root)
731 %{_libdir}/pkgconfig/lustre.pc
732 %if %{with static}
733 %{_libdir}/liblustreapi.a
734 %endif
735 %if %{with shared}
736 %{_libdir}/liblustreapi.so
737 %endif
738 %{_includedir}/lustre
739 %if %{with lustre_modules}
740 %{_includedir}/linux/lnet
741 %{_includedir}/linux/lustre
742 %else
743 %exclude %{_includedir}/linux/lnet
744 %exclude %{_includedir}/linux/lustre
745 %endif
746
747 %files -f lustre.files
748 %defattr(-,root,root)
749 %{_sbindir}/*
750 %if %{with lustre_tests}
751 %exclude %{_sbindir}/wirecheck
752 %exclude %{_sbindir}/wiretest
753 %endif
754 %if %{with zfs}
755 %exclude %{_sbindir}/zfsobj2fid
756 %endif
757 %if %{with lustre_utils}
758 %if %{with servers}
759 %{_libexecdir}/lustre/lc_common
760 %{_libexecdir}/lustre/haconfig
761 %{_bindir}/lustre_req_history
762 %{_bindir}/remove_changelog
763 %{_bindir}/remove_updatelog
764 %endif
765
766 %{_bindir}/llobdstat
767 %{_bindir}/lljobstat
768 %{_bindir}/llstat
769 %{_bindir}/plot-llstat
770 %{_datadir}/lustre
771
772 %{_bindir}/lfs
773 %{_bindir}/lfs_migrate
774 /sbin/mount.lustre
775 %if %{with servers}
776 /sbin/mount.lustre_tgt
777 %endif
778 @BASH_COMPLETION_DIR@
779 %endif
780
781 %if %{with manpages}
782 %{_mandir}/man?/*
783 %endif
784
785 %if %{with shared}
786 %{_libdir}/liblustreapi.so.*
787 %endif
788 %{_udevrulesdir}/99-lustre.rules
789 %if %{with servers}
790 %{_udevrulesdir}/99-lustre-server.rules
791 %endif
792 %if %{with zfs}
793 %config(noreplace) %{_sysconfdir}/ldev.conf
794 %endif
795 %config(noreplace) %{_sysconfdir}/lnet.conf
796 %config(noreplace) %{_sysconfdir}/modprobe.d/ko2iblnd.conf
797 %if %{with lustre_utils}
798 %config(noreplace) %{_sysconfdir}/lnet_routes.conf
799 %endif
800 %if %{with lustre_modules}
801 %exclude /Module.symvers
802 %if %{with shared}
803 %if %{with ldiskfs}
804 %if %{with lustre_utils}
805 %files osd-ldiskfs-mount
806 %defattr(-,root,root)
807 %{_libdir}/@PACKAGE@/mount_osd_ldiskfs.so
808 %endif
809 %endif
810 %endif
811
812 %if %{with shared}
813 %if %{with zfs}
814 %if %{with lustre_utils}
815 %files osd-zfs-mount
816 %defattr(-,root,root)
817 %{_libdir}/@PACKAGE@/mount_osd_zfs.so
818 %{_sysconfdir}/zfs/zed.d/*
819 %endif
820 %endif
821 %endif
822
823 # with lustre_modules
824 %endif
825
826 %if %{with servers}
827 %files resource-agents
828 %defattr(0755,root,root)
829 %{_prefix}/lib/ocf/resource.d/lustre/
830 %endif
831
832 %if %{with lustre_tests}
833 %files tests -f lustre-tests.files
834 %defattr(-,root,root)
835 %endif
836
837 %if %{with lustre_iokit}
838 %files -n lustre-iokit
839 %defattr(-, root, root)
840 %{_bindir}/iokit-config
841 %{_bindir}/iokit-gather-stats
842
843 %{_bindir}/iokit-libecho
844 %{_bindir}/iokit-lstats
845 %{_bindir}/iokit-parse-ior
846 %{_bindir}/iokit-plot-obdfilter
847 %{_bindir}/iokit-plot-ost
848 %{_bindir}/iokit-plot-sgpdd
849 %{_bindir}/ior-survey
850 %{_bindir}/mds-survey
851 %{_bindir}/obdfilter-survey
852 %{_bindir}/ost-survey
853 %{_bindir}/sgpdd-survey
854 %{_bindir}/lst-survey
855 %{_bindir}/lst.sh
856 %doc lustre-iokit/ior-survey/README.ior-survey
857 %doc lustre-iokit/mds-survey/README.mds-survey
858 %doc lustre-iokit/obdfilter-survey/README.obdfilter-survey
859 %doc lustre-iokit/ost-survey/README.ost-survey
860 %doc lustre-iokit/sgpdd-survey/README.sgpdd-survey
861 %doc lustre-iokit/stats-collect/README.iokit-lstats
862 %doc lustre-iokit/lst-survey/README.lst-survey
863 %endif
864
865 %post
866 %if %{with systemd}
867 %systemd_post lnet.service
868 %endif
869
870 %preun
871 %if %{with systemd}
872 %systemd_preun lnet.service
873 %endif
874
875 %postun
876 %if %{with systemd}
877 %systemd_postun_with_restart lnet.service
878 %endif
879
880 %clean
881 rm -rf $RPM_BUILD_ROOT
882 rm -rf %{_tmppath}/kmp