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