Whamcloud - gitweb
LU-13004 lnet: merge lnet_md_alloc into lnet_md_build.
[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 # By default both gss and gss keyring are disabled.
23 # gss keyring requires the gss core. If the builder
24 # request gss_keyring we must enable gss core even if
25 # the builder attempts to disable gss.
26 %if %{with gss_keyring}
27     %define with_gss 1
28 %endif
29
30 %if %{without servers}
31     # --without servers overrides --with {ldiskfs|zfs}
32     # so undefine the internal variables set by bcond_*
33     %undefine with_ldiskfs
34     %undefine with_zfs
35 %endif
36
37 %{!?version: %global version @VERSION@}
38 # if you want a custom kernel version set it variable with $ver.$arch
39 %{!?kver:    %global kver    %(uname -r)}
40 # cut epoch for kmodtool
41 %define _kver %(echo %{kver} | sed -e 's/^[0-9]*://')
42 # trust version from kdir - but it can lost 'epoch'
43 %if %{defined kdir}
44         %define _take_kver 1
45 %endif
46 %{!?kdir:    %global kdir    /lib/modules/%{_kver}/source}
47 %{!?kobjdir: %global kobjdir %(if [ "%{kdir}" = "/lib/modules/%{_kver}/source" ]; then echo "/lib/modules/%{_kver}/build"; else echo "%{kdir}"; fi)}
48
49 %if %{defined _take_kver}
50 # as an alternative to this implementation we could simply "make -C $kdir kernelversion"
51 %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)
52 %define _kver %kver
53 %endif
54
55 # We set this because kernel_module_package has its own method of identifying
56 # which kernel to build against, and it is unlikely that its decision will
57 # match with Lustre's method of selecting which kernel to build against.
58 # By setting this variable, we override kernel_module_package's kernel
59 # selection with our selection.
60 # kmodtool failed to take a version if epoch set
61 %global kernel_version %_kver
62
63 # in order to get kernel symset and/or kernel module dependencies into
64 # the RPM, in order to support weak-modules, the internal dependency gen-
65 # erator needs to be disabled
66 # this is done with (reduce the double % down to a single %):
67 #
68 # %%global _use_internal_dependency_generator 0
69 #
70 # on SLES10, /usr/lib/rpm/macros already sets this, so no harm in also
71 # defining it here (until Suse changes their mind)
72 #
73 # on RHEL5, however, we do need to explicitly disable the internal dep-
74 # endency generator and allow the external one be used
75 # but since RedHat's kABI is only a subset of the total kernel ABI, it
76 # doesn't include all of the symbols we (or OFED for that matter) need
77 # until RedHat includes all of the symbols we need in their symsets we
78 # cannot support weak-modules
79 # we did e-mail the maintainer of all of this stuff @redhat but got no
80 # response from them
81 #%%global _use_internal_dependency_generator 0
82
83 # Set the package name prefix
84 %if %{undefined lustre_name}
85     %if %{with servers}
86         %global lustre_name lustre
87     %else
88         %global lustre_name lustre-client
89     %endif
90 %endif
91
92 %if %{undefined kmoddir}
93     %if %{defined kernel_module_package_moddir}
94         %global kmoddir %{kernel_module_package_moddir}
95     %else
96         %if %{defined suse_kernel_module_package}
97             %global kmoddir updates
98         %else
99             %global kmoddir extra
100         %endif
101     %endif
102 %endif
103
104 %global modules_fs_path /lib/modules/%{_kver}/%{kmoddir}
105 # requires want to set a version including epoch
106 %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$//')
107
108 %if %{_vendor}=="redhat" || %{_vendor}=="fedora"
109         %global requires_yaml_name libyaml
110         %global requires_kmod_name kmod-%{lustre_name}
111         %global requires_kmod_osd_zfs_name kmod-%{lustre_name}-osd-zfs
112         %if %{with lustre_tests}
113                 %global requires_kmod_tests_name kmod-%{lustre_name}-tests
114         %endif
115         %global requires_kmod_version %{version}
116 %else   #for Suse
117         %global requires_yaml_name libyaml-0-2
118         %global requires_kmod_name %{lustre_name}-kmp
119         %global requires_kmod_osd_zfs_name %{lustre_name}-osd-zfs-kmp
120         %if %{with lustre_tests}
121                 %global requires_kmod_tests_name %{lustre_name}-tests-kmp
122         %endif
123         %if 0%{?suse_version} >= 1200
124                 %global requires_kmod_version %{version}_k%(echo %{krequires} | sed -r 'y/-/_/; s/^(2\.6\.[0-9]+)_/\\1.0_/;')
125         %else
126                 %global requires_kmod_version %{version}_%(echo %{krequires} | sed -r 'y/-/_/; s/^(2\.6\.[0-9]+)_/\\1.0_/;')
127         %endif
128 %endif
129
130 # RHEL >= 7 comes with systemd
131 %if 0%{?rhel} >= 7
132 %define with_systemd 1
133 %endif
134
135 # Fedora >= 15 comes with systemd, but only >= 18 has
136 # the proper macros
137 %if 0%{?fedora} >= 18
138 %define with_systemd 1
139 %endif
140
141 # opensuse >= 12.1 comes with systemd, but only >= 13.1
142 # has the proper macros
143 %if 0%{?suse_version} >= 1310
144 %define with_systemd 1
145 %endif
146
147 %{!?mpi_name: %global mpi_name openmpi}
148
149 Summary: Lustre File System
150 Name: %{lustre_name}
151 Version: %{version}
152 Release: 1%{?dist}
153 License: GPL
154 Group: System Environment/Kernel
155 Source: lustre-%{version}.tar.gz
156 Source1: kmp-lustre.preamble
157 Source2: kmp-lustre.files
158 Source3: kmp-lustre-osd-ldiskfs.preamble
159 Source4: kmp-lustre-osd-ldiskfs.files
160 Source5: kmp-lustre-osd-zfs.preamble
161 Source6: kmp-lustre-osd-zfs.files
162 Source7: kmp-lustre-tests.files
163 URL: https://wiki.whamcloud.com/
164 BuildRoot: %{_tmppath}/lustre-%{version}-root
165 Requires: %{requires_kmod_name} = %{requires_kmod_version} zlib
166 Requires: %{requires_yaml_name}
167 BuildRequires: libtool libyaml-devel zlib-devel
168 %if %{_vendor}=="redhat"
169 BuildRequires: redhat-rpm-config
170 BuildRequires: pkgconfig
171 %else
172 BuildRequires: pkg-config
173 %endif
174 %if %{with servers}
175 Requires: lustre-osd
176 Requires: lustre-osd-mount
177 Obsoletes: lustre-server < %{version}
178 Provides: lustre-server = %{version}-%{release}
179 %endif
180 Obsoletes: lustre-client < %{version}
181 Provides: lustre-client = %{version}-%{release}
182
183 # GSS requires this: BuildRequires: libgssapi-devel >= 0.10
184 %if %{_vendor}=="redhat" || %{_vendor}=="fedora"
185 #suse don't support selinux
186 BuildRequires: libselinux-devel
187 Requires: libselinux
188 %endif
189 %if %{with lustre_modules}
190 %if %{with mofed}
191 BuildRequires: mlnx-ofa_kernel-devel
192 %if %{_vendor} == "redhat"
193 Requires: kmod-mlnx-ofa_kernel
194 %else
195 Requires: mlnx-ofa_kernel-kmp
196 %endif
197 %endif
198 %if 0%{?rhel} >= 8
199 BuildRequires: kernel-rpm-macros
200 %endif
201 BuildRequires: %kernel_module_package_buildreqs
202 # need to provide a /usr/lib/${uname -r)/build dir
203 BuildRequires: kernel
204 %if %{_vendor}=="redhat"
205 %if %{with kabi}
206 BuildRequires: kernel-abi-whitelists
207 %endif
208 %endif
209 %endif
210
211 %if %{with systemd}
212 Requires(post): systemd
213 Requires(preun): systemd
214 Requires(postun): systemd
215 BuildRequires: systemd
216 %endif
217
218 %description
219 Userspace tools and files for the Lustre file system.
220
221 %if %{with lustre_modules}
222 %if 0%{?rhel} == 7
223 # until we have achieved full kABI compatibility we need to
224 # restrict the kernel range that can be used to the kernel
225 # version from the RHEL minor release
226 # this is supposed to be done for kmods automatically but
227 # RHBZ#1467319 seems to be getting in the way
228 # this is true for el7.0 through el7.4
229 %define preamble %{expand:%(
230 TMPFILE=`mktemp`
231 cat %{SOURCE1} > $TMPFILE
232 kver=%{kernel_version}
233 linuxversion=${kver%%%%-*}
234 linuxrelease=${kver##*-}
235 kabiminor=${linuxrelease%%%%.*}
236 echo "Requires:       kernel < $linuxversion-$((kabiminor+1)), kernel >= $linuxversion-$((kabiminor))" >> $TMPFILE
237 echo $TMPFILE
238 )}
239 %else
240 %define preamble %{SOURCE1}
241 %endif
242 %kernel_module_package -n %{name} -p %preamble -f %SOURCE2 default
243
244 %if %{with ldiskfs}
245 %kernel_module_package -n %{name}-osd-ldiskfs -p %SOURCE3 -f %SOURCE4 default
246 %if %{with lustre_utils}
247 %package osd-ldiskfs-mount
248 Summary: osd-ldiskfs-mount contains mount's ldiskfs specific dso.
249 BuildRequires: e2fsprogs-devel
250 Requires: ldiskfsprogs
251 Provides: lustre-osd-mount = %{version}
252 Obsoletes: lustre-osd-mount < %{version}
253 Group: System Environment/Kernel
254
255 %description osd-ldiskfs-mount
256 LDISKFS hooks for mount/mkfs into a dynamic library.
257
258 %endif  # with lustre_utils
259 %endif  # with ldiskfs
260
261 %if %{with zfs}
262 %kernel_module_package -n %{name}-osd-zfs -p %SOURCE5 -f %SOURCE6 default
263 %if %{with lustre_utils}
264 %package osd-zfs-mount
265 Summary: osd-zfs-mount contains mount's zfs specific dso.
266 Provides: lustre-osd-mount = %{version}
267 Obsoletes: lustre-osd-mount < %{version}
268 # Tests also require zpool from zfs package:
269 Requires: zfs
270 Requires: %{requires_kmod_osd_zfs_name}
271 Group: System Environment/Kernel
272
273 %description osd-zfs-mount
274 ZFS hooks for mount/mkfs into a dynamic library.
275
276 %endif  # with lustre_utils
277 %endif  # with zfs
278
279 %endif # with lustre_modules
280
281 %if %{with servers}
282 %package resource-agents
283 Summary: HA Resuable Cluster Resource Scripts for Lustre
284 Group: System Environment/Base
285 Requires: %{name}
286 Requires: resource-agents
287
288 %description resource-agents
289 A set of scripts to operate Lustre resources in a High Availablity
290 environment for both Pacemaker and rgmanager.
291 %endif
292
293 %if %{with lustre_tests}
294 %package tests
295 Summary: Lustre testing framework
296 Group: System Environment/Kernel
297 Provides: lustre-tests = %{version}
298 %if %{with lustre_iokit}
299 Requires: lustre-iokit
300 %endif
301 Requires: lustre-client = %{version}
302 Requires: %{requires_kmod_name} = %{requires_kmod_version}
303 Requires: %{requires_kmod_tests_name} = %{requires_kmod_version}
304 Requires: attr, rsync, perl, lsof, libtool, /usr/bin/getconf
305 %if %{with mpi}
306 %if %{mpi_name} == "mpich"
307 BuildRequires: mpich-devel
308 %endif
309 %if %{mpi_name} == "openmpi"
310 %if %{_vendor} == "redhat" || 0%{?suse_version} < 1500
311 BuildRequires: openmpi-devel
312 %else
313 BuildRequires: openmpi2-devel
314 %endif
315 %endif
316 %endif
317
318 %description tests
319 This package contains a set of test binaries and scripts that are intended
320 to be used by the Lustre testing framework.
321
322 %if %{with lustre_modules}
323 %kernel_module_package -n %{name}-tests -f %SOURCE7 default
324 %endif
325 %endif
326
327 %if %{with lustre_iokit}
328 %package -n lustre-iokit
329 Summary: The Lustre IO-Kit is a collection of benchmark tools for a cluster with the Lustre file system.
330 Group: Applications/System
331 Requires: python2 > 2.2, sg3_utils
332
333 %description -n lustre-iokit
334 This package includes five tools:
335 sgpdd-survey:
336 A test of the 'bare metal' performance, bypassing as much of the kernel as we can. Uses the sgp_dd utility.
337
338 obdfilter-survey
339 This survey can be run in 3 modes to test disk I/O including the filesystem,
340 network I/O, and disk I/O via the network.  The script does sequential I/O
341 with varying numbers of threads and objects (files) by using lctl::test_brw
342 to drive the echo_client connected to local or remote obdfilter instances,
343 or remote obdecho instances.
344
345 ost-survey
346 This survey tests the client-to-disk performance of individual OSTs, and
347 ranks then for comparison.
348
349 stats-collect
350 This script will collect IO stats on a defined set of nodes.
351
352 ior-survey:
353 A script to run the IOR benchmark. The latest version can be downloaded from
354 http://www.llnl.gov/asci/purple/benchmarks/limited/ior/
355
356 mds-survey:
357 This survey tests the local metadata performance using the echo_client to drive
358 the MDD layer to perform operations. It is run with multiple threads (to
359 simulate MDT service threads) locally on the MDS node, and does not need Lustre
360 clients in order to run
361 %endif
362
363 %if 0%{?suse_version}
364 %debug_package
365 %endif
366 %prep
367 %setup -qn lustre-%{version}
368 ln lustre/ChangeLog ChangeLog-lustre
369 ln lnet/ChangeLog ChangeLog-lnet
370
371 %build
372 # Set an explicit path to our Linux tree, if we can.
373 cd $RPM_BUILD_DIR/lustre-%{version}
374
375 # Store the CFLAGS and LDFLAGS that would normally be used in the UTILS_CFLAGS
376 # and UTILS_LDFLAGS environment variables so that we use can them when compiling
377 # the user-space code in lustre/utils and lnet/utils. As of RHEL 8.0, the
378 # __global_* variants are deprecated in favour of build_cflags, etc. If neither
379 # style is available (e.g. on SLES), then these just end up as empty strings.
380 export UTILS_CFLAGS="%{?build_cflags:%{build_cflags}}%{!?build_cflags:%{?__global_cflags:%{__global_cflags}}}"
381 export UTILS_LDFLAGS="%{?build_ldflags:%{build_ldflags}}%{!?build_ldflags:%{?__global_ldflags:%{__global_ldflags}}}"
382
383 # RHEL7 on PPC64 needs __SANE_USERSPACE_TYPES__ defined so that __s64 and __u64
384 # are presented to user-land as long long instead of long long. Without this it
385 # will fail the format check whenever such a variable is printed.
386 %if 0%{?rhel}
387 %ifarch ppc64
388 export UTILS_CFLAGS="${UTILS_CFLAGS} -D__SANE_USERSPACE_TYPES__=1"
389 %endif
390 %endif
391
392 # Disable any hardening or annotation since this doesn't make sense for
393 # kernel code, and reset %optflags so that the vendor's overzealous flags don't
394 # create build failures.
395 %define optflags -g -O2 -Werror
396 %undefine _annotated_build
397 %undefine _hardened_build
398
399 CONFIGURE_ARGS="%{?configure_args}"
400 if [ -n "$CONFIGURE_ARGS" ]; then
401         # make sure %%kdir and %%kobjdir are not in the configure arguments
402         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux=[^ ][^ ]* \?//')
403         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux-obj=[^ ][^ ]* \?//')
404         # remove --with-kmp-moddir from configure arguments,
405         # it will be set --with-kmp-moddir=%%kmoddir
406         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-kmp-moddir=[^ ][^ ]* \?//')
407 fi
408
409 # we need to eval "configure" because $CONFIGURE_ARGS could have a quoted
410 # string in it which we don't want word splitted by the shell
411 # also remove (build|host|target) options because they will be specified
412 # inside $CONFIGURE_ARGS
413 # kmod tools/scripts require %{name} directory with kernel modules
414 %define eval_configure %(echo '%configure' | sed -e 's#\./configure#eval ./configure#' -e 's/--\\(build\\|host\\|target\\)=[^ ][^ ]* //g')
415
416 %{?_openmpi_load}
417 %{?_mpich_load}
418
419 %eval_configure $CONFIGURE_ARGS \
420         %{?with_lustre_tests:--enable-tests}%{!?with_lustre_tests:--disable-tests} \
421         %{?with_lustre_utils:--enable-utils}%{!?with_lustre_utils:--disable-utils} \
422         %{?with_lustre_modules:--enable-modules}%{!?with_lustre_modules:--disable-modules} \
423         %{!?with_shared:--disable-shared} \
424         %{!?with_static:--disable-static} \
425         %{!?with_lustre_iokit:--disable-iokit} \
426         %{!?with_ldiskfs:--disable-ldiskfs} \
427         %{!?with_servers:--disable-server} \
428         %{!?with_zfs:--without-zfs} \
429         %{!?with_snmp:--disable-snmp} \
430         %{!?with_gss:--disable-gss} \
431         %{!?with_gss_keyring:--disable-gss-keyring} \
432         %{!?with_manpages:--disable-manpages} \
433         %{!?with_systemd:--with-systemdsystemunitdir=no} \
434         %{?with_systemd:--with-systemdsystemunitdir=%{_unitdir}} \
435         %{?with_mofed:--with-o2ib=/usr/src/ofa_kernel/default} \
436         --with-linux=%{kdir} \
437         --with-linux-obj=%{kobjdir} \
438         --with-kmp-moddir=%{kmoddir}/%{name}
439
440 make %{?_smp_mflags} -s %{?make_args}
441
442 %install
443 %{?_openmpi_load}
444 %{?_mpich_load}
445
446 make install DESTDIR=$RPM_BUILD_ROOT
447
448 # RHEL's kernel_module_path macro expects that all the modules
449 # in a kmod package will be in modules_fs_path/<sub packagename>
450 # but Lustre installs all of the modules in a single pass into
451 # a shared location.  Since this is a restriction imposed by
452 # RHEL, we handle this here in the spec file rather than in
453 # Lustre's build system.  This is not expected to bother SLES's
454 # kernel_module_path macro.
455 basemodpath=$RPM_BUILD_ROOT%{modules_fs_path}/%{name}
456 %if %{with ldiskfs}
457 mkdir -p $basemodpath-osd-ldiskfs/fs
458 mv $basemodpath/fs/osd_ldiskfs.ko $basemodpath-osd-ldiskfs/fs/osd_ldiskfs.ko
459 mv $basemodpath/fs/ldiskfs.ko $basemodpath-osd-ldiskfs/fs/ldiskfs.ko
460 %endif
461 %if %{with zfs}
462 mkdir -p $basemodpath-osd-zfs/fs
463 mv $basemodpath/fs/osd_zfs.ko $basemodpath-osd-zfs/fs/osd_zfs.ko
464 %endif
465 %if %{with lustre_tests}
466 mkdir -p $basemodpath-tests/fs
467 mv $basemodpath/fs/llog_test.ko $basemodpath-tests/fs/llog_test.ko
468 mkdir -p $RPM_BUILD_ROOT%{_libdir}/lustre/tests/kernel/
469 mv $basemodpath/fs/kinode.ko $RPM_BUILD_ROOT%{_libdir}/lustre/tests/kernel/
470 %endif
471
472 :> lustre.files
473
474 %if %{with servers} && %{with lustre_utils}
475 # The .ha_v2 extension identifies the heartbeat resource agent as using
476 # legacy syntax. Install a compatibility symlink to avoid conflicts when
477 # newer-style agents are added.
478 ln -s Lustre.ha_v2 $RPM_BUILD_ROOT%{_sysconfdir}/ha.d/resource.d/Lustre
479 echo '%{_sysconfdir}/ha.d/resource.d/Lustre.ha_v2' >>lustre.files
480 echo '%{_sysconfdir}/ha.d/resource.d/Lustre' >>lustre.files
481 %endif
482
483 # systemd is on redhat, fedora, and suse
484 %if %{with systemd}
485 echo '%{_unitdir}/lnet.service' >>lustre.files
486 %endif
487
488 %if %{_vendor}=="redhat"
489 # The following scripts are Red Hat specific
490 %if %{with servers}
491 echo '%{_sysconfdir}/init.d/lustre' >>lustre.files
492 echo '%{_sysconfdir}/sysconfig/lustre' >>lustre.files
493 %if %{with gss_keyring}
494 echo '%{_sysconfdir}/init.d/lsvcgss' >>lustre.files
495 echo '%config(noreplace) %{_sysconfdir}/sysconfig/lsvcgss' >>lustre.files
496 %endif
497 %endif
498
499 %if %{without systemd}
500 echo '%{_sysconfdir}/init.d/lnet' >>lustre.files
501 %endif
502 %endif
503 %if %{with gss_keyring}
504 echo '%config(noreplace) %{_sysconfdir}/request-key.d/lgssc.conf' >>lustre.files
505 %endif
506
507 # fc18 needs 'x' permission for library files
508 find $RPM_BUILD_ROOT -name \*.so -type f -exec chmod +x {} \;
509
510 rm -f $RPM_BUILD_ROOT%{_libdir}/liblnetconfig.la
511 %if %{with static}
512 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.a' >>lustre.files
513 %endif
514 %if %{with shared}
515 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so' >>lustre.files
516 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so.*' >>lustre.files
517 %endif
518
519 %if %{with ldiskfs}
520 echo '%{_libdir}/libiam.a' >>lustre.files
521 %endif
522
523 %if %{with snmp}
524 mkdir -p $RPM_BUILD_ROOT/%{_libdir}/lustre/snmp
525 echo '%{_libdir}/lustre/snmp' >>lustre.files
526 %endif
527
528 %if %{with lustre_utils}
529 mkdir -p $RPM_BUILD_ROOT/%{_datadir}/lustre
530 if [ -d $RPM_BUILD_ROOT%{_libdir}/lustre ] ; then
531         find $RPM_BUILD_ROOT%{_libdir}/@PACKAGE@ -name \*.la -type f -exec rm -f {} \;
532 fi
533 %endif
534
535 %if %{with lustre_modules}
536 # mark modules executable for find-debuginfo.sh
537 find $RPM_BUILD_ROOT/lib/modules -name \*.ko -type f -exec chmod u+x {} \;
538 %endif
539
540 rm -f $RPM_BUILD_ROOT%{_libdir}/liblustreapi.la
541
542 %if %{with lustre_tests}
543 :> lustre-tests.files
544 echo '%{_libdir}/lustre/tests/*' >>lustre-tests.files
545 echo '%{_bindir}/mcreate' >>lustre-tests.files
546 echo '%{_bindir}/munlink' >>lustre-tests.files
547 echo '%{_sbindir}/wirecheck' >>lustre-tests.files
548 echo '%{_sbindir}/wiretest' >>lustre-tests.files
549 if [ -n "$MPI_BIN" ]; then
550         echo "$MPI_BIN/*" >>lustre-tests.files
551 fi
552 %endif
553
554 %files -f lustre.files
555 %defattr(-,root,root)
556 %{_sbindir}/*
557 %if %{with lustre_tests}
558 %exclude %{_sbindir}/wirecheck
559 %exclude %{_sbindir}/wiretest
560 %endif
561 %if %{with zfs}
562 %exclude %{_sbindir}/zfsobj2fid
563 %endif
564 %if %{with lustre_utils}
565 %if %{with servers}
566 %{_libexecdir}/lustre/lc_common
567 %{_libexecdir}/lustre/haconfig
568 %{_bindir}/lustre_req_history
569 %endif
570
571 %{_bindir}/llobdstat
572 %{_bindir}/llstat
573 %{_bindir}/plot-llstat
574
575 %{_bindir}/lfs
576 %{_bindir}/lfs_migrate
577 /sbin/mount.lustre
578 /sbin/mount.lustre_tgt
579 %if %{with static}
580 %{_libdir}/liblustreapi.a
581 %endif
582 %if %{with shared}
583 %{_libdir}/liblustreapi.so*
584 %endif
585 %if %{with manpages}
586 %{_mandir}/man?/*
587 %endif
588 %{_datadir}/lustre
589 %{_datadir}/bash-completion/completions/*
590 %{_includedir}/lustre
591 %{_includedir}/linux/lnet
592 %{_includedir}/linux/lustre
593 %endif
594 %{_sysconfdir}/udev/rules.d/99-lustre.rules
595 %if %{with servers}
596 %{_sysconfdir}/udev/rules.d/99-lustre-server.rules
597 %endif
598 %if %{with zfs}
599 %config(noreplace) %{_sysconfdir}/ldev.conf
600 %endif
601 %config(noreplace) %{_sysconfdir}/lnet.conf
602 %config(noreplace) %{_sysconfdir}/modprobe.d/ko2iblnd.conf
603 %if %{with lustre_utils}
604 %config(noreplace) %{_sysconfdir}/lnet_routes.conf
605 %endif
606 %if %{with lustre_modules}
607
608 %if %{with shared}
609 %if %{with ldiskfs}
610 %if %{with lustre_utils}
611 %files osd-ldiskfs-mount
612 %defattr(-,root,root)
613 %{_libdir}/@PACKAGE@/mount_osd_ldiskfs.so
614 %endif
615 %endif
616 %endif
617
618 %if %{with shared}
619 %if %{with zfs}
620 %if %{with lustre_utils}
621 %files osd-zfs-mount
622 %defattr(-,root,root)
623 %{_libdir}/@PACKAGE@/mount_osd_zfs.so
624 %{_sysconfdir}/zfs/zed.d/*
625 %endif
626 %endif
627 %endif
628
629 %endif # with lustre_modules
630
631 %if %{with servers}
632 %files resource-agents
633 %defattr(0755,root,root)
634 %{_prefix}/lib/ocf/resource.d/lustre/
635 %endif
636
637 %if %{with lustre_tests}
638 %files tests -f lustre-tests.files
639 %defattr(-,root,root)
640 %endif
641
642 %if %{with lustre_iokit}
643 %files -n lustre-iokit
644 %defattr(-, root, root)
645 %{_bindir}/iokit-config
646 %{_bindir}/iokit-gather-stats
647 %{_bindir}/iokit-libecho
648 %{_bindir}/iokit-lstats
649 %{_bindir}/iokit-parse-ior
650 %{_bindir}/iokit-plot-obdfilter
651 %{_bindir}/iokit-plot-ost
652 %{_bindir}/iokit-plot-sgpdd
653 %{_bindir}/ior-survey
654 %{_bindir}/mds-survey
655 %{_bindir}/obdfilter-survey
656 %{_bindir}/ost-survey
657 %{_bindir}/sgpdd-survey
658 %doc lustre-iokit/ior-survey/README.ior-survey
659 %doc lustre-iokit/mds-survey/README.mds-survey
660 %doc lustre-iokit/obdfilter-survey/README.obdfilter-survey
661 %doc lustre-iokit/ost-survey/README.ost-survey
662 %doc lustre-iokit/sgpdd-survey/README.sgpdd-survey
663 %doc lustre-iokit/stats-collect/README.iokit-lstats
664 %endif
665
666 %post
667 %if %{with systemd}
668 %systemd_post lnet.service
669 %endif
670
671 %preun
672 %if %{with systemd}
673 %systemd_preun lnet.service
674 %endif
675
676 %postun
677 %if %{with systemd}
678 %systemd_postun_with_restart lnet.service
679 %endif
680
681 %clean
682 rm -rf $RPM_BUILD_ROOT
683 rm -rf %{_tmppath}/kmp