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