Whamcloud - gitweb
LU-10401 tests: fix error from 'tr -d='
[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 # RHEL's kernel_module_path macro expects that all the modules
448 # in a kmod package will be in modules_fs_path/<sub packagename>
449 # but Lustre installs all of the modules in a single pass into
450 # a shared location.  Since this is a restriction imposed by
451 # RHEL, we handle this here in the spec file rather than in
452 # Lustre's build system.  This is not expected to bother SLES's
453 # kernel_module_path macro.
454 basemodpath=$RPM_BUILD_ROOT%{modules_fs_path}/%{name}
455 %if %{with ldiskfs}
456 mkdir -p $basemodpath-osd-ldiskfs/fs
457 mv $basemodpath/fs/osd_ldiskfs.ko $basemodpath-osd-ldiskfs/fs/osd_ldiskfs.ko
458 mv $basemodpath/fs/ldiskfs.ko $basemodpath-osd-ldiskfs/fs/ldiskfs.ko
459 %endif
460 %if %{with zfs}
461 mkdir -p $basemodpath-osd-zfs/fs
462 mv $basemodpath/fs/osd_zfs.ko $basemodpath-osd-zfs/fs/osd_zfs.ko
463 %endif
464 %if %{with lustre_tests}
465 mkdir -p $basemodpath-tests/fs
466 mv $basemodpath/fs/llog_test.ko $basemodpath-tests/fs/llog_test.ko
467 mkdir -p $RPM_BUILD_ROOT%{_libdir}/lustre/tests/kernel/
468 mv $basemodpath/fs/kinode.ko $RPM_BUILD_ROOT%{_libdir}/lustre/tests/kernel/
469 %endif
470
471 :> lustre.files
472
473 %if %{with servers} && %{with lustre_utils}
474 # The .ha_v2 extension identifies the heartbeat resource agent as using
475 # legacy syntax. Install a compatibility symlink to avoid conflicts when
476 # newer-style agents are added.
477 ln -s Lustre.ha_v2 $RPM_BUILD_ROOT%{_sysconfdir}/ha.d/resource.d/Lustre
478 echo '%{_sysconfdir}/ha.d/resource.d/Lustre.ha_v2' >>lustre.files
479 echo '%{_sysconfdir}/ha.d/resource.d/Lustre' >>lustre.files
480 %endif
481
482 # systemd is on redhat, fedora, and suse
483 %if %{with systemd}
484 echo '%{_unitdir}/lnet.service' >>lustre.files
485 %endif
486
487 %if %{_vendor}=="redhat"
488 # The following scripts are Red Hat specific
489 %if %{with servers}
490 echo '%{_sysconfdir}/init.d/lustre' >>lustre.files
491 echo '%{_sysconfdir}/sysconfig/lustre' >>lustre.files
492 %if %{with gss_keyring}
493 echo '%{_sysconfdir}/init.d/lsvcgss' >>lustre.files
494 echo '%config(noreplace) %{_sysconfdir}/sysconfig/lsvcgss' >>lustre.files
495 %endif
496 %endif
497
498 %if %{without systemd}
499 echo '%{_sysconfdir}/init.d/lnet' >>lustre.files
500 %endif
501 %endif
502 %if %{with gss_keyring}
503 echo '%config(noreplace) %{_sysconfdir}/request-key.d/lgssc.conf' >>lustre.files
504 %endif
505
506 # fc18 needs 'x' permission for library files
507 find $RPM_BUILD_ROOT -name \*.so -type f -exec chmod +x {} \;
508
509 rm -f $RPM_BUILD_ROOT%{_libdir}/liblnetconfig.la
510 %if %{with static}
511 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.a' >>lustre.files
512 %endif
513 %if %{with shared}
514 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so' >>lustre.files
515 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so.*' >>lustre.files
516 %endif
517
518 %if %{with ldiskfs}
519 echo '%{_libdir}/libiam.a' >>lustre.files
520 %endif
521
522 %if %{with snmp}
523 mkdir -p $RPM_BUILD_ROOT/%{_libdir}/lustre/snmp
524 echo '%{_libdir}/lustre/snmp' >>lustre.files
525 %endif
526
527 %if %{with lustre_utils}
528 mkdir -p $RPM_BUILD_ROOT/%{_datadir}/lustre
529 if [ -d $RPM_BUILD_ROOT%{_libdir}/lustre ] ; then
530         find $RPM_BUILD_ROOT%{_libdir}/@PACKAGE@ -name \*.la -type f -exec rm -f {} \;
531 fi
532 %endif
533
534 %if %{with lustre_modules}
535 # mark modules executable for find-debuginfo.sh
536 find $RPM_BUILD_ROOT/lib/modules -name \*.ko -type f -exec chmod u+x {} \;
537 %endif
538
539 rm -f $RPM_BUILD_ROOT%{_libdir}/liblustreapi.la
540
541 %if %{with lustre_tests}
542 :> lustre-tests.files
543 echo '%{_libdir}/lustre/tests/*' >>lustre-tests.files
544 echo '%{_bindir}/mcreate' >>lustre-tests.files
545 echo '%{_bindir}/munlink' >>lustre-tests.files
546 echo '%{_sbindir}/wirecheck' >>lustre-tests.files
547 echo '%{_sbindir}/wiretest' >>lustre-tests.files
548 if [ -n "$MPI_BIN" ]; then
549         echo "$MPI_BIN/*" >>lustre-tests.files
550 fi
551 %endif
552
553 %files -f lustre.files
554 %defattr(-,root,root)
555 %{_sbindir}/*
556 %if %{with lustre_tests}
557 %exclude %{_sbindir}/wirecheck
558 %exclude %{_sbindir}/wiretest
559 %endif
560 %if %{with zfs}
561 %exclude %{_sbindir}/zfsobj2fid
562 %endif
563 %if %{with lustre_utils}
564 %if %{with servers}
565 %{_libexecdir}/lustre/lc_common
566 %{_libexecdir}/lustre/haconfig
567 %{_bindir}/lustre_req_history
568 %endif
569
570 %{_bindir}/llobdstat
571 %{_bindir}/llstat
572 %{_bindir}/plot-llstat
573
574 %{_bindir}/lfs
575 %{_bindir}/lfs_migrate
576 /sbin/mount.lustre
577 /sbin/mount.lustre_tgt
578 %if %{with static}
579 %{_libdir}/liblustreapi.a
580 %endif
581 %if %{with shared}
582 %{_libdir}/liblustreapi.so*
583 %endif
584 %if %{with manpages}
585 %{_mandir}/man?/*
586 %endif
587 %{_datadir}/lustre
588 %{_datadir}/bash-completion/completions/*
589 %{_includedir}/lustre
590 %{_includedir}/linux/lnet
591 %{_includedir}/linux/lustre
592 %endif
593 %{_sysconfdir}/udev/rules.d/99-lustre.rules
594 %if %{with servers}
595 %{_sysconfdir}/udev/rules.d/99-lustre-server.rules
596 %endif
597 %if %{with zfs}
598 %config(noreplace) %{_sysconfdir}/ldev.conf
599 %endif
600 %config(noreplace) %{_sysconfdir}/lnet.conf
601 %config(noreplace) %{_sysconfdir}/modprobe.d/ko2iblnd.conf
602 %if %{with lustre_utils}
603 %config(noreplace) %{_sysconfdir}/lnet_routes.conf
604 %endif
605 %if %{with lustre_modules}
606
607 %if %{with shared}
608 %if %{with ldiskfs}
609 %if %{with lustre_utils}
610 %files osd-ldiskfs-mount
611 %defattr(-,root,root)
612 %{_libdir}/@PACKAGE@/mount_osd_ldiskfs.so
613 %endif
614 %endif
615 %endif
616
617 %if %{with shared}
618 %if %{with zfs}
619 %if %{with lustre_utils}
620 %files osd-zfs-mount
621 %defattr(-,root,root)
622 %{_libdir}/@PACKAGE@/mount_osd_zfs.so
623 %{_sysconfdir}/zfs/zed.d/*
624 %endif
625 %endif
626 %endif
627
628 %endif # with lustre_modules
629
630 %if %{with servers}
631 %files resource-agents
632 %defattr(0755,root,root)
633 %{_prefix}/lib/ocf/resource.d/lustre/
634 %endif
635
636 %if %{with lustre_tests}
637 %files tests -f lustre-tests.files
638 %defattr(-,root,root)
639 %endif
640
641 %if %{with lustre_iokit}
642 %files -n lustre-iokit
643 %defattr(-, root, root)
644 %{_bindir}/iokit-config
645 %{_bindir}/iokit-gather-stats
646 %{_bindir}/iokit-libecho
647 %{_bindir}/iokit-lstats
648 %{_bindir}/iokit-parse-ior
649 %{_bindir}/iokit-plot-obdfilter
650 %{_bindir}/iokit-plot-ost
651 %{_bindir}/iokit-plot-sgpdd
652 %{_bindir}/ior-survey
653 %{_bindir}/mds-survey
654 %{_bindir}/obdfilter-survey
655 %{_bindir}/ost-survey
656 %{_bindir}/sgpdd-survey
657 %doc lustre-iokit/ior-survey/README.ior-survey
658 %doc lustre-iokit/mds-survey/README.mds-survey
659 %doc lustre-iokit/obdfilter-survey/README.obdfilter-survey
660 %doc lustre-iokit/ost-survey/README.ost-survey
661 %doc lustre-iokit/sgpdd-survey/README.sgpdd-survey
662 %doc lustre-iokit/stats-collect/README.iokit-lstats
663 %endif
664
665 %post
666 %if %{with systemd}
667 %systemd_post lnet.service
668 %endif
669
670 %preun
671 %if %{with systemd}
672 %systemd_preun lnet.service
673 %endif
674
675 %postun
676 %if %{with systemd}
677 %systemd_postun_with_restart lnet.service
678 %endif
679
680 %clean
681 rm -rf $RPM_BUILD_ROOT
682 rm -rf %{_tmppath}/kmp