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