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