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