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