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