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