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