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