Whamcloud - gitweb
LU-13499 obd: fix printing of client connection UUID
[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 %endif
188 %if %{with lustre_modules}
189 %if %{with mofed}
190 BuildRequires: mlnx-ofa_kernel-devel
191 %if %{_vendor} == "redhat"
192 Requires: kmod-mlnx-ofa_kernel
193 %else
194 Requires: mlnx-ofa_kernel-kmp
195 %endif
196 %endif
197 %if 0%{?rhel} >= 8
198 BuildRequires: kernel-rpm-macros
199 %endif
200 BuildRequires: %kernel_module_package_buildreqs
201 # need to provide a /usr/lib/${uname -r)/build dir
202 BuildRequires: kernel
203 %if %{_vendor}=="redhat"
204 %if %{with kabi}
205 BuildRequires: kernel-abi-whitelists
206 %endif
207 %endif
208 %endif
209
210 %if %{with systemd}
211 Requires(post): systemd
212 Requires(preun): systemd
213 Requires(postun): systemd
214 BuildRequires: systemd
215 %endif
216
217 %description
218 Userspace tools and files for the Lustre file system.
219
220 %if %{with lustre_modules}
221 %if 0%{?rhel} == 7
222 # until we have achieved full kABI compatibility we need to
223 # restrict the kernel range that can be used to the kernel
224 # version from the RHEL minor release
225 # this is supposed to be done for kmods automatically but
226 # RHBZ#1467319 seems to be getting in the way
227 # this is true for el7.0 through el7.4
228 %define preamble %{expand:%(
229 TMPFILE=`mktemp`
230 cat %{SOURCE1} > $TMPFILE
231 kver=%{kernel_version}
232 linuxversion=${kver%%%%-*}
233 linuxrelease=${kver##*-}
234 kabiminor=${linuxrelease%%%%.*}
235 echo "Requires:       kernel < $linuxversion-$((kabiminor+1)), kernel >= $linuxversion-$((kabiminor))" >> $TMPFILE
236 echo $TMPFILE
237 )}
238 %else
239 %define preamble %{SOURCE1}
240 %endif
241 %kernel_module_package -n %{name} -p %preamble -f %SOURCE2 default
242
243 %if %{with ldiskfs}
244 %kernel_module_package -n %{name}-osd-ldiskfs -p %SOURCE3 -f %SOURCE4 default
245 %if %{with lustre_utils}
246 %package osd-ldiskfs-mount
247 Summary: osd-ldiskfs-mount contains mount's ldiskfs specific dso.
248 BuildRequires: e2fsprogs-devel
249 Requires: ldiskfsprogs
250 Provides: lustre-osd-mount = %{version}
251 Obsoletes: lustre-osd-mount < %{version}
252 Group: System Environment/Kernel
253
254 %description osd-ldiskfs-mount
255 LDISKFS hooks for mount/mkfs into a dynamic library.
256
257 %endif  # with lustre_utils
258 %endif  # with ldiskfs
259
260 %if %{with zfs}
261 %kernel_module_package -n %{name}-osd-zfs -p %SOURCE5 -f %SOURCE6 default
262 %if %{with lustre_utils}
263 %package osd-zfs-mount
264 Summary: osd-zfs-mount contains mount's zfs specific dso.
265 Provides: lustre-osd-mount = %{version}
266 Obsoletes: lustre-osd-mount < %{version}
267 # Tests also require zpool from zfs package:
268 Requires: zfs
269 Requires: %{requires_kmod_osd_zfs_name}
270 Group: System Environment/Kernel
271
272 %description osd-zfs-mount
273 ZFS hooks for mount/mkfs into a dynamic library.
274
275 %endif  # with lustre_utils
276 %endif  # with zfs
277
278 %endif # with lustre_modules
279
280 %if %{with servers}
281 %package resource-agents
282 Summary: HA Resuable Cluster Resource Scripts for Lustre
283 Group: System Environment/Base
284 Requires: %{name}
285 Requires: resource-agents
286
287 %description resource-agents
288 A set of scripts to operate Lustre resources in a High Availablity
289 environment for both Pacemaker and rgmanager.
290 %endif
291
292 %if %{with lustre_tests}
293 %package tests
294 Summary: Lustre testing framework
295 Group: System Environment/Kernel
296 Provides: lustre-tests = %{version}
297 %if %{with lustre_iokit}
298 Requires: lustre-iokit
299 %endif
300 Requires: lustre-client = %{version}
301 Requires: %{requires_kmod_name} = %{requires_kmod_version}
302 Requires: %{requires_kmod_tests_name} = %{requires_kmod_version}
303 Requires: attr, rsync, perl, lsof, libtool, /usr/bin/getconf
304 %if %{with mpi}
305 %if %{mpi_name} == "mpich"
306 BuildRequires: mpich-devel
307 %endif
308 %if %{mpi_name} == "openmpi"
309 %if %{_vendor} == "redhat" || 0%{?suse_version} < 1500
310 BuildRequires: openmpi-devel
311 %else
312 BuildRequires: openmpi2-devel
313 %endif
314 %endif
315 %endif
316
317 %description tests
318 This package contains a set of test binaries and scripts that are intended
319 to be used by the Lustre testing framework.
320
321 %if %{with lustre_modules}
322 %kernel_module_package -n %{name}-tests -f %SOURCE7 default
323 %endif
324 %endif
325
326 %if %{with lustre_iokit}
327 %package -n lustre-iokit
328 Summary: The Lustre IO-Kit is a collection of benchmark tools for a cluster with the Lustre file system.
329 Group: Applications/System
330 Requires: python2 > 2.2, sg3_utils
331
332 %description -n lustre-iokit
333 This package includes five tools:
334 sgpdd-survey:
335 A test of the 'bare metal' performance, bypassing as much of the kernel as we can. Uses the sgp_dd utility.
336
337 obdfilter-survey
338 This survey can be run in 3 modes to test disk I/O including the filesystem,
339 network I/O, and disk I/O via the network.  The script does sequential I/O
340 with varying numbers of threads and objects (files) by using lctl::test_brw
341 to drive the echo_client connected to local or remote obdfilter instances,
342 or remote obdecho instances.
343
344 ost-survey
345 This survey tests the client-to-disk performance of individual OSTs, and
346 ranks then for comparison.
347
348 stats-collect
349 This script will collect IO stats on a defined set of nodes.
350
351 ior-survey:
352 A script to run the IOR benchmark. The latest version can be downloaded from
353 http://www.llnl.gov/asci/purple/benchmarks/limited/ior/
354
355 mds-survey:
356 This survey tests the local metadata performance using the echo_client to drive
357 the MDD layer to perform operations. It is run with multiple threads (to
358 simulate MDT service threads) locally on the MDS node, and does not need Lustre
359 clients in order to run
360 %endif
361
362 %if 0%{?suse_version}
363 %debug_package
364 %endif
365 %prep
366 %setup -qn lustre-%{version}
367 ln lustre/ChangeLog ChangeLog-lustre
368 ln lnet/ChangeLog ChangeLog-lnet
369
370 %build
371 # Set an explicit path to our Linux tree, if we can.
372 cd $RPM_BUILD_DIR/lustre-%{version}
373
374 # Store the CFLAGS and LDFLAGS that would normally be used in the UTILS_CFLAGS
375 # and UTILS_LDFLAGS environment variables so that we use can them when compiling
376 # the user-space code in lustre/utils and lnet/utils. As of RHEL 8.0, the
377 # __global_* variants are deprecated in favour of build_cflags, etc. If neither
378 # style is available (e.g. on SLES), then these just end up as empty strings.
379 export UTILS_CFLAGS="%{?build_cflags:%{build_cflags}}%{!?build_cflags:%{?__global_cflags:%{__global_cflags}}}"
380 export UTILS_LDFLAGS="%{?build_ldflags:%{build_ldflags}}%{!?build_ldflags:%{?__global_ldflags:%{__global_ldflags}}}"
381
382 # RHEL7 on PPC64 needs __SANE_USERSPACE_TYPES__ defined so that __s64 and __u64
383 # are presented to user-land as long long instead of long long. Without this it
384 # will fail the format check whenever such a variable is printed.
385 %if 0%{?rhel}
386 %ifarch ppc64
387 export UTILS_CFLAGS="${UTILS_CFLAGS} -D__SANE_USERSPACE_TYPES__=1"
388 %endif
389 %endif
390
391 # Disable any hardening or annotation since this doesn't make sense for
392 # kernel code, and reset %optflags so that the vendor's overzealous flags don't
393 # create build failures.
394 %define optflags -g -O2 -Werror
395 %undefine _annotated_build
396 %undefine _hardened_build
397
398 CONFIGURE_ARGS="%{?configure_args}"
399 if [ -n "$CONFIGURE_ARGS" ]; then
400         # make sure %%kdir and %%kobjdir are not in the configure arguments
401         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux=[^ ][^ ]* \?//')
402         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux-obj=[^ ][^ ]* \?//')
403         # remove --with-kmp-moddir from configure arguments,
404         # it will be set --with-kmp-moddir=%%kmoddir
405         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-kmp-moddir=[^ ][^ ]* \?//')
406 fi
407
408 # we need to eval "configure" because $CONFIGURE_ARGS could have a quoted
409 # string in it which we don't want word splitted by the shell
410 # also remove (build|host|target) options because they will be specified
411 # inside $CONFIGURE_ARGS
412 # kmod tools/scripts require %{name} directory with kernel modules
413 %define eval_configure %(echo '%configure' | sed -e 's#\./configure#eval ./configure#' -e 's/--\\(build\\|host\\|target\\)=[^ ][^ ]* //g')
414
415 %{?_openmpi_load}
416 %{?_mpich_load}
417
418 %eval_configure $CONFIGURE_ARGS \
419         %{?with_lustre_tests:--enable-tests}%{!?with_lustre_tests:--disable-tests} \
420         %{?with_lustre_utils:--enable-utils}%{!?with_lustre_utils:--disable-utils} \
421         %{?with_lustre_modules:--enable-modules}%{!?with_lustre_modules:--disable-modules} \
422         %{!?with_shared:--disable-shared} \
423         %{!?with_static:--disable-static} \
424         %{!?with_lustre_iokit:--disable-iokit} \
425         %{!?with_ldiskfs:--disable-ldiskfs} \
426         %{!?with_servers:--disable-server} \
427         %{!?with_zfs:--without-zfs} \
428         %{!?with_snmp:--disable-snmp} \
429         %{!?with_gss:--disable-gss} \
430         %{!?with_gss_keyring:--disable-gss-keyring} \
431         %{!?with_manpages:--disable-manpages} \
432         %{!?with_systemd:--with-systemdsystemunitdir=no} \
433         %{?with_systemd:--with-systemdsystemunitdir=%{_unitdir}} \
434         %{?with_mofed:--with-o2ib=/usr/src/ofa_kernel/default} \
435         --with-linux=%{kdir} \
436         --with-linux-obj=%{kobjdir} \
437         --with-kmp-moddir=%{kmoddir}/%{name}
438
439 make %{?_smp_mflags} -s %{?make_args}
440
441 %install
442 %{?_openmpi_load}
443 %{?_mpich_load}
444
445 make install DESTDIR=$RPM_BUILD_ROOT
446
447 %if %{with lustre_modules}
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 %endif
472
473 :> lustre.files
474
475 %if %{with servers} && %{with lustre_utils}
476 # The .ha_v2 extension identifies the heartbeat resource agent as using
477 # legacy syntax. Install a compatibility symlink to avoid conflicts when
478 # newer-style agents are added.
479 ln -s Lustre.ha_v2 $RPM_BUILD_ROOT%{_sysconfdir}/ha.d/resource.d/Lustre
480 echo '%{_sysconfdir}/ha.d/resource.d/Lustre.ha_v2' >>lustre.files
481 echo '%{_sysconfdir}/ha.d/resource.d/Lustre' >>lustre.files
482 %endif
483
484 # systemd is on redhat, fedora, and suse
485 %if %{with systemd}
486 echo '%{_unitdir}/lnet.service' >>lustre.files
487 %endif
488
489 %if %{_vendor}=="redhat"
490 # The following scripts are Red Hat specific
491 %if %{with servers}
492 echo '%{_sysconfdir}/init.d/lustre' >>lustre.files
493 echo '%{_sysconfdir}/sysconfig/lustre' >>lustre.files
494 %if %{with gss_keyring}
495 echo '%{_sysconfdir}/init.d/lsvcgss' >>lustre.files
496 echo '%config(noreplace) %{_sysconfdir}/sysconfig/lsvcgss' >>lustre.files
497 %endif
498 %endif
499
500 %if %{without systemd}
501 echo '%{_sysconfdir}/init.d/lnet' >>lustre.files
502 %endif
503 %endif
504 %if %{with gss_keyring}
505 echo '%config(noreplace) %{_sysconfdir}/request-key.d/lgssc.conf' >>lustre.files
506 %endif
507
508 # fc18 needs 'x' permission for library files
509 find $RPM_BUILD_ROOT -name \*.so -type f -exec chmod +x {} \;
510
511 rm -f $RPM_BUILD_ROOT%{_libdir}/liblnetconfig.la
512 %if %{with static}
513 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.a' >>lustre.files
514 %endif
515 %if %{with shared}
516 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so' >>lustre.files
517 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so.*' >>lustre.files
518 %endif
519
520 %if %{with ldiskfs}
521 echo '%{_libdir}/libiam.a' >>lustre.files
522 %endif
523
524 %if %{with snmp}
525 mkdir -p $RPM_BUILD_ROOT/%{_libdir}/lustre/snmp
526 echo '%{_libdir}/lustre/snmp' >>lustre.files
527 %endif
528
529 %if %{with lustre_utils}
530 mkdir -p $RPM_BUILD_ROOT/%{_datadir}/lustre
531 if [ -d $RPM_BUILD_ROOT%{_libdir}/lustre ] ; then
532         find $RPM_BUILD_ROOT%{_libdir}/@PACKAGE@ -name \*.la -type f -exec rm -f {} \;
533 fi
534 %endif
535
536 %if %{with lustre_modules}
537 # mark modules executable for find-debuginfo.sh
538 find $RPM_BUILD_ROOT/lib/modules -name \*.ko -type f -exec chmod u+x {} \;
539 %endif
540
541 rm -f $RPM_BUILD_ROOT%{_libdir}/liblustreapi.la
542
543 %if %{with lustre_tests}
544 :> lustre-tests.files
545 echo '%{_libdir}/lustre/tests/*' >>lustre-tests.files
546 echo '%{_bindir}/mcreate' >>lustre-tests.files
547 echo '%{_bindir}/munlink' >>lustre-tests.files
548 echo '%{_sbindir}/wirecheck' >>lustre-tests.files
549 echo '%{_sbindir}/wiretest' >>lustre-tests.files
550 if [ -n "$MPI_BIN" ]; then
551         echo "$MPI_BIN/*" >>lustre-tests.files
552 fi
553 %endif
554
555 %files -f lustre.files
556 %defattr(-,root,root)
557 %{_sbindir}/*
558 %if %{with lustre_tests}
559 %exclude %{_sbindir}/wirecheck
560 %exclude %{_sbindir}/wiretest
561 %endif
562 %if %{with zfs}
563 %exclude %{_sbindir}/zfsobj2fid
564 %endif
565 %if %{with lustre_utils}
566 %if %{with servers}
567 %{_libexecdir}/lustre/lc_common
568 %{_libexecdir}/lustre/haconfig
569 %{_bindir}/lustre_req_history
570 %endif
571
572 %{_bindir}/llobdstat
573 %{_bindir}/llstat
574 %{_bindir}/plot-llstat
575
576 %{_bindir}/lfs
577 %{_bindir}/lfs_migrate
578 /sbin/mount.lustre
579 /sbin/mount.lustre_tgt
580 %if %{with static}
581 %{_libdir}/liblustreapi.a
582 %endif
583 %if %{with shared}
584 %{_libdir}/liblustreapi.so*
585 %endif
586 %if %{with manpages}
587 %{_mandir}/man?/*
588 %endif
589 %{_datadir}/lustre
590 %{_datadir}/bash-completion/completions/*
591 %{_includedir}/lustre
592 %{_includedir}/linux/lnet
593 %{_includedir}/linux/lustre
594 %endif
595 %{_sysconfdir}/udev/rules.d/99-lustre.rules
596 %if %{with servers}
597 %{_sysconfdir}/udev/rules.d/99-lustre-server.rules
598 %endif
599 %if %{with zfs}
600 %config(noreplace) %{_sysconfdir}/ldev.conf
601 %endif
602 %config(noreplace) %{_sysconfdir}/lnet.conf
603 %config(noreplace) %{_sysconfdir}/modprobe.d/ko2iblnd.conf
604 %if %{with lustre_utils}
605 %config(noreplace) %{_sysconfdir}/lnet_routes.conf
606 %endif
607 %if %{with lustre_modules}
608
609 %if %{with shared}
610 %if %{with ldiskfs}
611 %if %{with lustre_utils}
612 %files osd-ldiskfs-mount
613 %defattr(-,root,root)
614 %{_libdir}/@PACKAGE@/mount_osd_ldiskfs.so
615 %endif
616 %endif
617 %endif
618
619 %if %{with shared}
620 %if %{with zfs}
621 %if %{with lustre_utils}
622 %files osd-zfs-mount
623 %defattr(-,root,root)
624 %{_libdir}/@PACKAGE@/mount_osd_zfs.so
625 %{_sysconfdir}/zfs/zed.d/*
626 %endif
627 %endif
628 %endif
629
630 %endif # with lustre_modules
631
632 %if %{with servers}
633 %files resource-agents
634 %defattr(0755,root,root)
635 %{_prefix}/lib/ocf/resource.d/lustre/
636 %endif
637
638 %if %{with lustre_tests}
639 %files tests -f lustre-tests.files
640 %defattr(-,root,root)
641 %endif
642
643 %if %{with lustre_iokit}
644 %files -n lustre-iokit
645 %defattr(-, root, root)
646 %{_bindir}/iokit-config
647 %{_bindir}/iokit-gather-stats
648 %{_bindir}/iokit-libecho
649 %{_bindir}/iokit-lstats
650 %{_bindir}/iokit-parse-ior
651 %{_bindir}/iokit-plot-obdfilter
652 %{_bindir}/iokit-plot-ost
653 %{_bindir}/iokit-plot-sgpdd
654 %{_bindir}/ior-survey
655 %{_bindir}/mds-survey
656 %{_bindir}/obdfilter-survey
657 %{_bindir}/ost-survey
658 %{_bindir}/sgpdd-survey
659 %doc lustre-iokit/ior-survey/README.ior-survey
660 %doc lustre-iokit/mds-survey/README.mds-survey
661 %doc lustre-iokit/obdfilter-survey/README.obdfilter-survey
662 %doc lustre-iokit/ost-survey/README.ost-survey
663 %doc lustre-iokit/sgpdd-survey/README.sgpdd-survey
664 %doc lustre-iokit/stats-collect/README.iokit-lstats
665 %endif
666
667 %post
668 %if %{with systemd}
669 %systemd_post lnet.service
670 %endif
671
672 %preun
673 %if %{with systemd}
674 %systemd_preun lnet.service
675 %endif
676
677 %postun
678 %if %{with systemd}
679 %systemd_postun_with_restart lnet.service
680 %endif
681
682 %clean
683 rm -rf $RPM_BUILD_ROOT
684 rm -rf %{_tmppath}/kmp