Whamcloud - gitweb
LU-4648 ldiskfs: delete external EA in another transaction
[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 lnet_dlc
12
13 %if %{without servers}
14     # --without servers overrides --with {ldiskfs|zfs}
15     # so undefine the internal variables set by bcond_*
16     %undefine with_ldiskfs
17     %undefine with_zfs
18 %endif
19
20 %{!?version: %global version @VERSION@}
21 %{!?kver: %global kver ""}
22 %{!?kdir: %global kdir %(dir=$(echo "%configure_args" | sed -ne 's/.*--with-linux=\\([^ ][^ ]*\\).*$/\\1/p'); if [ -n "$dir" ]; then echo "$dir"; else if [ -n "%kver" ]; then kversion="%kver"; else kversion="$(uname -r)"; fi; echo "/lib/modules/$kversion/source"; fi)}
23
24 %{!?kobjdir: %global kobjdir %(dir=$(echo "%configure_args" | sed -ne 's/.*--with-linux-obj=\\([^ ][^ ]*\\).*$/\\1/p'); if [ -n "$dir" ]; then echo "$dir"; else if [ -n "%kver" ]; then kversion="%kver"; else kversion="$(uname -r)"; fi; if [ "%kdir" = "/lib/modules/$kversion/source" ]; then echo "/lib/modules/$kversion/build"; else echo "%kdir"; fi; fi)}
25
26 # as an alternative to this implementation we could simply "make -C $kdir kernelversion"
27 %{!?kversion: %global kversion %(if test -s %kobjdir/include/generated/utsrelease.h ; then LINUXRELEASEHEADER=%kobjdir/include/generated/utsrelease.h ; elif test -s %kobjdir/include/linux/utsrelease.h ; then LINUXRELEASEHEADER=%kobjdir/include/linux/utsrelease.h ; else LINUXRELEASEHEADER=%kobjdir/include/linux/version.h; fi; sed -ne '/^#define UTS_RELEASE/s/.*"\\(.*\\)"$/\\1/p' $LINUXRELEASEHEADER)}
28
29 %{!?downstream_release: %global downstream_release "@DOWNSTREAM_RELEASE@"}
30
31 %define buildid %(if [ -n "@BUILDID@" ]; then echo "_@BUILDID@"; fi)
32
33 %{!?myrelease: %global myrelease %(if [ -n "%downstream_release" ]; then echo -n "%{downstream_release}_"; fi; echo %kversion | tr '-' '_')}
34
35 # always append the buildid, even when the caller defines %release
36 %define fullrelease %{myrelease}%{buildid}
37
38 # in order to get kernel symset and/or kernel module dependencies into
39 # the RPM, in order to support weak-modules, the internal dependency gen-
40 # erator needs to be disabled
41 # this is done with (reduce the double % down to a single %):
42 #
43 # %%global _use_internal_dependency_generator 0
44 #
45 # on SLES10, /usr/lib/rpm/macros already sets this, so no harm in also
46 # defining it here (until Suse changes their mind)
47 #
48 # on RHEL5, however, we do need to explicitly disable the internal dep-
49 # endency generator and allow the external one be used
50 # but since RedHat's kABI is only a subset of the total kernel ABI, it
51 # doesn't include all of the symbols we (or OFED for that matter) need
52 # until RedHat includes all of the symbols we need in their symsets we
53 # cannot support weak-modules
54 # we did e-mail the maintainer of all of this stuff @redhat but got no
55 # response from them
56 #%%global _use_internal_dependency_generator 0
57
58 # for those uses that don't want the -smp/-bigsmp (or the .arch) on the end
59 # of %kversion
60 %define krequires %(bash -c "echo %{kversion} | sed -e 's/\.x86_64$//' -e 's/\.i[3456]86$//' -e 's/-smp$//' -e 's/-bigsmp$//' -e 's/-ppc64$//' -e 's/-default$//'")
61
62 # Set the package name prefix
63 %if %{undefined lustre_name}
64     %if %{with servers}
65         %global lustre_name lustre
66     %else
67         %global lustre_name lustre-client
68     %endif
69 %endif
70
71 %if %{undefined kmoddir}
72     %if %{defined kernel_module_package_moddir}
73         %global kmoddir %{kernel_module_package_moddir}
74     %else
75         %if %{defined suse_kernel_module_package}
76             %global kmoddir updates
77         %else
78             %global kmoddir extra
79         %endif
80     %endif
81 %endif
82
83 %if %{defined cross_path} && %{defined post_script}
84 %define rpm_post_base %(echo $(dirname %{cross_path})/%{lustre_name})
85 %endif
86
87 # SUSE don't support .debug_info section from cross compiler:
88 # /usr/lib/rpm/debugedit: Unhandled relocation 10 in .debug_info section
89 %if %{defined cross_path} && 0%{?suse_version}
90 %global __debug_install_post %{nil}
91 %global __debug_package %{nil}
92 %global debug_package %{nil}
93 %endif
94
95 Summary: Lustre File System
96 Name: %{lustre_name}
97 Version: %{version}
98 Release: %{fullrelease}
99 License: GPL
100 Group: Utilities/System
101 Source: lustre-%{version}.tar.gz
102 URL: https://wiki.hpdd.intel.com/
103 BuildRoot: %{_tmppath}/lustre-%{version}-root
104 Obsoletes: lustre-lite, lustre-lite-utils, lustre-ldap nfs-utils-lustre
105 Provides: lustre-lite = %{version}, lustre-lite-utils = %{version}
106 Requires: %{name}-modules = %{version}
107 BuildRequires: libtool
108 %if %{with servers}
109 Requires: lustre-osd
110 Requires: lustre-osd-mount
111 %endif
112 %if %{defined cross_requires}
113 Requires: %{cross_requires}
114 AutoReqProv: no
115 %else
116 # GSS requires this: BuildRequires: pkgconfig, libgssapi-devel >= 0.10
117 %if %{_vendor}=="redhat" || %{_vendor}=="fedora"
118 #suse don't support selinux
119 BuildRequires: libselinux-devel
120 Requires: libselinux
121 %endif
122 %endif
123
124 %description
125 Userspace tools and files for the Lustre file system.
126
127 %if %{with lustre_modules}
128 %package modules
129 Summary: Kernel Lustre modules for Linux %{kversion}
130 %if %{defined cross_requires}
131 Requires: %{cross_requires}
132 AutoReqProv: no
133 %else
134 # for SLES11, we need nothing here
135 %if %{_vendor}=="redhat" || %{_vendor}=="fedora"
136 # for RHEL we need to require the specific kernel still since weak-modules
137 # support on RH is, well, weak, to be punny about it
138 Requires: kernel = %{krequires}
139 %if %{with lnet_dlc}
140 Requires: libyaml
141 BuildRequires: libyaml-devel
142 %endif
143 %endif
144 %endif
145 Group: Development/Kernel
146
147 %description modules
148 Lustre file system, server and network drivers for Linux %{kversion}.
149
150 %if %{with ldiskfs}
151 %package osd-ldiskfs
152 Summary: osd-ldiskfs contains both ldiskfs and its osd interface in Lustre.
153 Requires: lustre-modules = %{version}
154 Requires: module-init-tools >= 3.9
155 Requires: ldiskfsprogs >= 1.42.7.wc1
156 Requires: lustre-osd-ldiskfs-mount
157 Provides: lustre-osd
158 Obsoletes: lustre-ldiskfs
159 Group: Development/Kernel
160
161 %description osd-ldiskfs
162 The Lustre Object Storage Device (OSD) API is the interface to access and
163 modify data that is supposed to be stored persistently. This API is the interface
164 to code that bridges individual file systems. This specific package provides an
165 implementation of the OSD API for using the Ldiskfs filesystem as the underlying
166 backing store of a Lustre server.
167
168 %if %{with lustre_utils}
169 %package osd-ldiskfs-mount
170 Summary: osd-ldiskfs-mount contains mount's ldiskfs specific dso.
171 Provides: lustre-osd-mount
172 Group: Development/Kernel
173
174 %description osd-ldiskfs-mount
175 LDISKFS hooks for mount/mkfs into a dynamic library.
176
177 %endif
178 %endif
179
180 %if %{with zfs}
181 %package osd-zfs
182 Summary: osd-zfs is the mandatory glue for ZFS support in Lustre.
183 Requires: lustre-modules = %{version}, zfs-kmod
184 Requires: lustre-osd-zfs-mount
185 Provides: lustre-osd
186 Group: Development/Kernel
187
188 %description osd-zfs
189 The Lustre Object Storage Device (OSD) API is the interface to access and
190 modify data that is supposed to be stored persistently. This API is the interface
191 to code that bridges individual file systems. This specific package provides an
192 implementation of the OSD API for using the ZFS filesystem as the underlying
193 backing store of a Lustre server.
194
195 %if %{with lustre_utils}
196 %package osd-zfs-mount
197 Summary: osd-zfs-mount contains mount's ldiskfs specific dso.
198 Provides: lustre-osd-mount
199 Group: Development/Kernel
200
201 %description osd-zfs-mount
202 ZFS hooks for mount/mkfs into a dynamic library.
203
204 %endif
205 %endif
206 %endif # with lustre_modules
207
208 %package source
209 Summary: Object-Based Disk storage driver source
210 Group: Development/Kernel
211
212 %description source
213 Lustre sources for further development
214
215 # Since the RPMs we ship are to be used on both SLES and RHEL, we
216 # can't include any dependency information (since the package names
217 # are different on the two platforms).
218 #
219 # Instead, we can build these empty meta-packages that only include
220 # dependency information.  These let people get the correct
221 # dependencies for their platform and lets them use tools like yum and
222 # red carpet to install the correct files.
223 #
224 # Unfortunately I have not seen this come up on the lists much, so I
225 # have disabled them (by commenting out their empty files section
226 # below) until it's clear that they resolve more confusion than they
227 # add.
228
229 %package deps-sles
230 Summary: Lustre dependencies meta-package for SLES
231 Group: Utilities/System
232 Provides: lustre-deps = %{version}
233 Requires: %{name} = %{version}, sles-release
234 Conflicts: %{name}-deps-rhel
235
236 %description deps-sles
237 This package has RPM dependencies appropriate for SLES systems.
238
239 %package deps-rhel
240 Summary: Lustre dependencies meta-package for RHEL
241 Group: Utilities/System
242 Provides: lustre-deps = %{version}
243 Requires: %{name} = %{version}, redhat-release
244 Conflicts: %{name}-deps-sles
245
246 %description deps-rhel
247 This package has RPM dependencies appropriate for RHEL, RHL, and FC
248 systems.
249
250 %package tests
251 Summary: Lustre testing framework
252 Group: Development/Kernel
253 Provides: %{name}-tests = %{version}
254 Requires: %{name} = %{version}, %{name}-modules = %{version}, lustre-iokit
255 Requires: attr, rsync, perl, lsof, /usr/bin/getconf
256
257 %description tests
258 This package contains a set of test binaries and scripts that are intended
259 to be used by the Lustre testing framework.
260
261 %if %{with lustre_iokit}
262 %package -n lustre-iokit
263 Summary: The Lustre IO-Kit is a collection of benchmark tools for a cluster with the Lustre file system.
264 Group: Applications/System
265 Requires: python > 2.2, sg3_utils
266
267 %description -n lustre-iokit
268 This package includes five tools:
269 sgpdd-survey:
270 A test of the 'bare metal' performance, bypassing as much of the kernel as we can. Uses the sgp_dd utility.
271
272 obdfilter-survey
273 This survey can be run in 3 modes to test disk I/O including the filesystem,
274 network I/O, and disk I/O via the network.  The script does sequential I/O
275 with varying numbers of threads and objects (files) by using lctl::test_brw
276 to drive the echo_client connected to local or remote obdfilter instances,
277 or remote obdecho instances.
278
279 ost-survey
280 This survey tests the client-to-disk performance of individual OSTs, and
281 ranks then for comparison.
282
283 stats-collect
284 This script will collect IO stats on a defined set of nodes.
285
286 ior-survey:
287 A script to run the IOR benchmark. The latest version can be downloaded from
288 http://www.llnl.gov/asci/purple/benchmarks/limited/ior/
289
290 mds-survey:
291 This survey tests the local metadata performance using the echo_client to drive
292 the MDD layer to perform operations. It is run with multiple threads (to
293 simulate MDT service threads) locally on the MDS node, and does not need Lustre
294 clients in order to run
295 %endif
296
297 %if 0%{?suse_version}
298 %debug_package
299 %endif
300 %prep
301 %setup -qn lustre-%{version}
302 ln lustre/ChangeLog ChangeLog-lustre
303 ln lnet/ChangeLog ChangeLog-lnet
304
305 %build
306
307 # Set an explicit path to our Linux tree, if we can.
308 cd $RPM_BUILD_DIR/lustre-%{version}
309 # override %optflags so that the vendor's overzealous flags don't create
310 # build failures
311 %define optflags -g -O2 -Werror
312 CONFIGURE_ARGS="%{?configure_args} --with-release=%release"
313
314 %if %{with lustre_tests}
315 CONFIGURE_ARGS="$CONFIGURE_ARGS --enable-tests"
316 %else
317 CONFIGURE_ARGS="$CONFIGURE_ARGS --disable-tests"
318 %endif
319
320 %if %{with lustre_utils}
321 CONFIGURE_ARGS="$CONFIGURE_ARGS --enable-utils"
322 %else
323 CONFIGURE_ARGS="$CONFIGURE_ARGS --disable-utils"
324 %endif
325
326 %if %{without lustre_iokit}
327 CONFIGURE_ARGS="$CONFIGURE_ARGS --disable-iokit"
328 %endif
329
330 %if %{with lustre_modules}
331 CONFIGURE_ARGS="$CONFIGURE_ARGS --enable-modules"
332 %else
333 CONFIGURE_ARGS="$CONFIGURE_ARGS --disable-modules"
334 %endif
335
336 %if %{without servers}
337 CONFIGURE_ARGS="$CONFIGURE_ARGS --disable-server"
338 %endif
339
340 %if %{without ldiskfs}
341 CONFIGURE_ARGS="$CONFIGURE_ARGS --disable-ldiskfs"
342 %endif
343
344 %if %{without zfs}
345 CONFIGURE_ARGS="$CONFIGURE_ARGS --without-zfs"
346 %endif
347
348 # if %%kdir was given, make sure it's not in the configure arguments
349 if [ -n "%kdir" ]; then
350         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux=[^ ][^ ]* \?//')
351 fi
352 # ditto for %%kobjdir
353 if [ -n "%kobjdir" ]; then
354         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux-obj=[^ ][^ ]* \?//')
355 fi
356 # remove --with-kmp-moddir from configure arguments,
357 # it will be set --with-kmp-moddir=%%kmoddir
358 CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-kmp-moddir=[^ ][^ ]* \?//')
359
360 # we need to eval "configure" because $CONFIGURE_ARGS could have a quoted
361 # string in it which we don't want word splitted by the shell
362 # also remove (build|host|target) options because they will be specified
363 # inside $CONFIGURE_ARGS
364 %define eval_configure %(echo '%configure' | sed -e 's#\./configure#eval ./configure#' -e 's/--\\(build\\|host\\|target\\)=[^ ][^ ]* //g')
365
366 %eval_configure \
367         %{?kdir: --with-linux=%kdir} %{?kobjdir: --with-linux-obj=%kobjdir} \
368         $CONFIGURE_ARGS --with-kmp-moddir=%{kmoddir}
369 make %{?_smp_mflags} -s %{?make_args}
370
371 %install
372 make install DESTDIR=$RPM_BUILD_ROOT
373
374 :> lustre.files
375
376 %if %{with servers}
377 # The .ha_v2 extension identifies the heartbeat resource agent as using
378 # legacy syntax. Install a compatibility symlink to avoid conflicts when
379 # newer-style agents are added.
380 %if %{with lustre_utils}
381 ln -s Lustre.ha_v2 $RPM_BUILD_ROOT%{_sysconfdir}/ha.d/resource.d/Lustre
382 echo '%{_sysconfdir}/ha.d/resource.d/Lustre.ha_v2' >>lustre.files
383 echo '%{_sysconfdir}/ha.d/resource.d/Lustre' >>lustre.files
384 %endif
385
386 if [ -f $RPM_BUILD_ROOT%{_sysconfdir}/init.d/lustre ]; then
387         echo '%{_sysconfdir}/sysconfig/lustre' >>lustre.files
388         echo '%{_sysconfdir}/init.d/lustre' >>lustre.files
389 fi
390 %endif
391
392 if [ -f $RPM_BUILD_ROOT%{_sysconfdir}/init.d/lnet ]; then
393         echo '%{_sysconfdir}/init.d/lnet' >>lustre.files
394 fi
395
396 # Create the pristine source directory.
397 cd $RPM_BUILD_DIR/lustre-%{version}
398 mkdir -p $RPM_BUILD_ROOT%{_prefix}/src
399 rm -f lustre-source
400 ln -s $RPM_BUILD_ROOT%{_prefix}/src lustre-source
401 make distdir distdir=lustre-source/lustre-%{version}
402 chmod -R go-w lustre-source/lustre-%{version}
403 # fc18 needs 'x' permission for library files
404 find $RPM_BUILD_ROOT -name \*.so -type f -exec chmod +x {} \;
405
406 if [ -f $RPM_BUILD_ROOT%{_libdir}/liblnetconfig.a ] ; then
407   echo '%attr(-, root, root) %{_libdir}/liblnetconfig.a' >>lustre.files
408   echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so' >>lustre.files
409 fi
410
411 if [ -f $RPM_BUILD_ROOT%{_libdir}/liblustre.so ] ; then
412   echo '%{_libdir}/liblustre.a' >>lustre.files
413   echo '%{_libdir}/liblustre.so' >>lustre.files
414 fi
415
416 if [ -f $RPM_BUILD_ROOT%{_libdir}/libiam.a ] ; then
417   echo '%{_libdir}/libiam.a' >>lustre.files
418 fi
419
420 if [ -d $RPM_BUILD_ROOT%{_libdir}/lustre/snmp ] ; then
421   echo '%{_libdir}/lustre/snmp' >>lustre.files
422   echo '%{_datadir}/lustre/snmp/mibs' >>lustre.files
423 fi
424
425 find $RPM_BUILD_ROOT%{_libdir}/@PACKAGE@/ -name \*.la -type f -delete
426
427 %if %{with lustre_tests}
428 echo '%{_libdir}/lustre/tests/*' >>lustre-tests.files
429 echo '%{_bindir}/mcreate' >>lustre-tests.files
430 echo '%{_bindir}/munlink' >>lustre-tests.files
431 echo '%{_bindir}/req_layout' >>lustre-tests.files
432 echo '%{_sbindir}/wirecheck' >>lustre-tests.files
433 echo '%{_sbindir}/wiretest' >>lustre-tests.files
434 %if %{with lustre_modules}
435 echo '%{?rootdir}/lib/modules/%{kversion}/%{kmoddir}/kernel/fs/@PACKAGE@/llog_test.ko' >>lustre-tests.files
436 %endif
437 %endif
438
439 %if %{defined cross_path}
440 %if %{defined rpm_post_base}
441 POST_SCRIPT=$RPM_BUILD_DIR/lustre-%{version}/%{post_script}
442 if [ -f $POST_SCRIPT ]; then
443         cp -f $POST_SCRIPT $RPM_BUILD_ROOT/%{rpm_post_base}.sh
444         echo '%attr(0555, root, root) %{rpm_post_base}.sh' >>lustre.files
445         cp -f $POST_SCRIPT $RPM_BUILD_ROOT/%{rpm_post_base}-modules.sh
446 %if %{with ldiskfs}
447         cp -f $POST_SCRIPT $RPM_BUILD_ROOT/%{rpm_post_base}-osd-ldiskfs.sh
448 %if %{with lustre_utils}
449         cp -f $POST_SCRIPT $RPM_BUILD_ROOT/%{rpm_post_base}-mount-osd-ldiskfs.sh
450 %endif
451 %endif
452 %if %{with zfs}
453         cp -f $POST_SCRIPT $RPM_BUILD_ROOT/%{rpm_post_base}-osd-zfs.sh
454 %if %{with lustre_utils}
455         cp -f $POST_SCRIPT $RPM_BUILD_ROOT/%{rpm_post_base}-mount-osd-zfs.sh
456 %endif
457 %endif
458 %if %{with lustre_tests}
459         cp -f $POST_SCRIPT $RPM_BUILD_ROOT/%{rpm_post_base}-tests.sh
460         echo '%attr(0555, root, root) %{rpm_post_base}-tests.sh' >>lustre-tests.files
461 %endif
462 fi
463 %endif
464 %else
465 %if %{with lustre_modules}
466 # mark modules executable for find-debuginfo.sh
467 find $RPM_BUILD_ROOT%{?rootdir}/lib/modules/%{kversion}/%{kmoddir} \
468     -name \*.ko -type f -exec chmod u+x {} \;
469 %endif
470 %endif
471
472 %files -f lustre.files
473 %defattr(-,root,root)
474 %{_sbindir}/*
475 %if %{with lustre_utils}
476 %if %{with servers}
477 %{_libexecdir}/lustre/lc_common
478 %{_libexecdir}/lustre/haconfig
479 %{_bindir}/lustre_req_history
480 %endif
481
482 %{_bindir}/llobdstat
483 %{_bindir}/llstat
484 %{_bindir}/plot-llstat
485
486 %{_bindir}/lfs
487 %{_bindir}/lfs_migrate
488 %{?rootdir}/sbin/mount.lustre
489 %{_libdir}/libptlctl.a
490 %{_libdir}/libcfsutil.a
491 %{_libdir}/liblustreapi.a
492 %{_libdir}/liblustreapi.so
493 %{_mandir}/man?/*
494 %{_includedir}/lustre
495 %{_includedir}/libcfs
496 %endif
497 %{_datadir}/lustre
498 %{_sysconfdir}/udev/rules.d/99-lustre.rules
499 %config(noreplace) %{_sysconfdir}/ldev.conf
500
501 %if %{with lustre_modules}
502 %files modules
503 %defattr(-,root,root)
504 %{?rootdir}/lib/modules/%{kversion}/%{kmoddir}/*
505 %if %{with lustre_tests}
506 %exclude %{?rootdir}/lib/modules/%{kversion}/%{kmoddir}/kernel/fs/@PACKAGE@/llog_test.ko
507 %endif
508 %if %{with ldiskfs}
509 %exclude %{?rootdir}/lib/modules/%{kversion}/%{kmoddir}/kernel/fs/@PACKAGE@/ldiskfs.ko
510 %exclude %{?rootdir}/lib/modules/%{kversion}/%{kmoddir}/kernel/fs/@PACKAGE@/osd_ldiskfs.ko
511 %endif
512 %if %{with zfs}
513 %exclude %{?rootdir}/lib/modules/%{kversion}/%{kmoddir}/kernel/fs/@PACKAGE@/osd_zfs.ko
514 %endif
515 %if %{defined rpm_post_base}
516 %attr(0555, root, root) %{rpm_post_base}-modules.sh
517 %endif
518 %doc COPYING
519 %doc ChangeLog-lustre
520 %doc ChangeLog-lnet
521
522 %if %{with ldiskfs}
523 %files osd-ldiskfs
524 %defattr(-,root,root)
525 %{?rootdir}/lib/modules/%{kversion}/%{kmoddir}/kernel/fs/@PACKAGE@/ldiskfs.ko
526 %{?rootdir}/lib/modules/%{kversion}/%{kmoddir}/kernel/fs/@PACKAGE@/osd_ldiskfs.ko
527 %if %{defined rpm_post_base}
528 %attr(0555, root, root) %{rpm_post_base}-osd-ldiskfs.sh
529 %endif
530 %if %{with lustre_utils}
531 %files osd-ldiskfs-mount
532 %defattr(-,root,root)
533 %{_libdir}/@PACKAGE@/mount_osd_ldiskfs.so
534 %if %{defined rpm_post_base}
535 %attr(0555, root, root) %{rpm_post_base}-mount-osd-ldiskfs.sh
536 %endif
537 %endif
538 %endif
539
540 %if %{with zfs}
541 %files osd-zfs
542 %defattr(-,root,root)
543 %{?rootdir}/lib/modules/%{kversion}/%{kmoddir}/kernel/fs/@PACKAGE@/osd_zfs.ko
544 %if %{defined rpm_post_base}
545 %attr(0555, root, root) %{rpm_post_base}-osd-zfs.sh
546 %endif
547 %if %{with lustre_utils}
548 %files osd-zfs-mount
549 %defattr(-,root,root)
550 %{_libdir}/@PACKAGE@/mount_osd_zfs.so
551 %if %{defined rpm_post_base}
552 %attr(0555, root, root) %{rpm_post_base}-mount-osd-zfs.sh
553 %endif
554 %endif
555 %endif
556 %endif # with lustre_modules
557
558 %files source
559 %defattr(-,root,root)
560 %{_prefix}/src/lustre-%{version}
561
562 # uncomment these lines to enable deps packages
563 # %files deps-sles
564 # %files deps-rhel
565
566 %if %{with lustre_tests}
567 %files tests -f lustre-tests.files
568 %defattr(-,root,root)
569 %endif
570
571 %if %{with lustre_iokit}
572 %files -n lustre-iokit
573 %defattr(-, root, root)
574 %{_bindir}/iokit-config
575 %{_bindir}/iokit-gather-stats
576 %{_bindir}/iokit-libecho
577 %{_bindir}/iokit-lstats
578 %{_bindir}/iokit-parse-ior
579 %{_bindir}/iokit-plot-obdfilter
580 %{_bindir}/iokit-plot-ost
581 %{_bindir}/iokit-plot-sgpdd
582 %{_bindir}/ior-survey
583 %{_bindir}/mds-survey
584 %{_bindir}/obdfilter-survey
585 %{_bindir}/ost-survey
586 %{_bindir}/sgpdd-survey
587 %doc lustre-iokit/ior-survey/README.ior-survey
588 %doc lustre-iokit/mds-survey/README.mds-survey
589 %doc lustre-iokit/obdfilter-survey/README.obdfilter-survey
590 %doc lustre-iokit/ost-survey/README.ost-survey
591 %doc lustre-iokit/sgpdd-survey/README.sgpdd-survey
592 %doc lustre-iokit/stats-collect/README.iokit-lstats
593 %endif
594
595 %if %{defined rpm_post_base}
596 %post
597 if [ -x %{rpm_post_base}.sh ]; then
598         %{rpm_post_base}.sh %{cross_path} create
599 fi
600
601 %preun
602 if [ -x %{rpm_post_base}.sh ]; then
603         %{rpm_post_base}.sh %{cross_path} remove
604 fi
605 %endif
606
607 %if %{with lustre_modules}
608 %post modules
609 %if %{defined rpm_post_base}
610 if [ -x %{rpm_post_base}-modules.sh ]; then
611         %{rpm_post_base}-modules.sh %{cross_path} create
612 fi
613 %else
614 if [ -f /boot/System.map-%{kversion} ]; then
615         depmod -ae -F /boot/System.map-%{kversion} %{kversion} || exit 0
616 else
617         depmod -ae %{kversion} || exit 0
618 fi
619
620 MODULES_RPM_NAME=$(rpm -q %{name}-modules | grep "%{version}-%{release}")
621 # "weak modules" support
622 # Suse
623 if [ -x /usr/lib/module-init-tools/weak-modules ]; then
624     rpm -ql $MODULES_RPM_NAME | grep '\.ko$' |
625         /usr/lib/module-init-tools/weak-modules --add-modules
626 fi
627 # RedHat
628 if [ -x /sbin/weak-modules ]; then
629     rpm -ql $MODULES_RPM_NAME | grep '\.ko$' |
630         /sbin/weak-modules --add-modules
631 fi
632
633 # If the kernel was built to reject unsupported modules (e.g. not a Lustre
634 # kernel), and this hasn't been overridden in /etc/modprobe.d yet, then
635 # print a warning so that users are aware of this issue.
636 if sysctl kernel.unsupported >/dev/null 2>&1 &&
637    [ "$(sysctl -n kernel.unsupported 2>/dev/null)" = "0" ] &&
638     ! modprobe -c | grep -q "^allow_unsupported_modules[ \t]1" ; then
639      echo "
640      warning: the Lustre modules are not supported by Novell. To use Lustre
641               on this system, you should put
642
643      allow_unsupported_modules 1
644
645      into /etc/modprobe.d/unsupported_modules"
646 fi
647 %endif
648
649 %if %{with ldiskfs}
650 %post osd-ldiskfs
651 %if %{defined rpm_post_base}
652 if [ -x %{rpm_post_base}-osd-ldiskfs.sh ]; then
653         %{rpm_post_base}-osd-ldiskfs.sh %{cross_path} create
654 fi
655 %else
656 if [ -f /boot/System.map-%{kversion} ]; then
657        depmod -ae -F /boot/System.map-%{kversion} %{kversion} || exit 0
658 else
659        depmod -ae %{kversion} || exit 0
660 fi
661
662 OSD_LDISKFS_RPM_NAME=$(rpm -q %{name}-osd-ldiskfs | grep "%{version}-%{release}")
663 # "weak modules" support
664 # Suse
665 if [ -x /usr/lib/module-init-tools/weak-modules ]; then
666     rpm -ql $OSD_LDISKFS_RPM_NAME | grep '\.ko$' |
667         /usr/lib/module-init-tools/weak-modules --add-modules
668 fi
669 # RedHat
670 if [ -x /sbin/weak-modules ]; then
671     rpm -ql $OSD_LDISKFS_RPM_NAME | grep '\.ko$' |
672         /sbin/weak-modules --add-modules
673 fi
674
675 # If the kernel was built to reject unsupported modules (e.g. not a Lustre
676 # kernel), and this hasn't been overridden in /etc/modprobe.d yet, then
677 # print a warning so that users are aware of this issue.
678 if sysctl kernel.unsupported >/dev/null 2>&1 &&
679    [ "$(sysctl -n kernel.unsupported 2>/dev/null)" = "0" ] &&
680     ! modprobe -c | grep -q "^allow_unsupported_modules[ \t]1" ; then
681      echo "
682      warning: the Lustre modules are not supported by Novell. To use Lustre
683               on this system, you should put
684
685      allow_unsupported_modules 1
686
687      into /etc/modprobe.d/unsupported_modules"
688 fi
689 %endif
690 %if %{with lustre_utils} && %{defined rpm_post_base}
691 %post osd-ldiskfs-mount
692 if [ -x %{rpm_post_base}-mount-osd-ldiskfs.sh ]; then
693         %{rpm_post_base}-mount-osd-ldiskfs.sh %{cross_path} create
694 fi
695 %endif
696 %endif
697
698 %if %{with zfs}
699 %post osd-zfs
700 %if %{defined rpm_post_base}
701 if [ -x %{rpm_post_base}-osd-zfs.sh ]; then
702         %{rpm_post_base}-osd-zfs.sh %{cross_path} create
703 fi
704 %else
705 if [ -f /boot/System.map-%{kversion} ]; then
706        depmod -ae -F /boot/System.map-%{kversion} %{kversion} || exit 0
707 else
708        depmod -ae %{kversion} || exit 0
709 fi
710
711 OSD_ZFS_RPM_NAME=$(rpm -q %{name}-osd-zfs | grep "%{version}-%{release}")
712 # "weak modules" support
713 # Suse
714 if [ -x /usr/lib/module-init-tools/weak-modules ]; then
715     rpm -ql $OSD_ZFS_RPM_NAME | grep '\.ko$' |
716         /usr/lib/module-init-tools/weak-modules --add-modules
717 fi
718 # RedHat
719 if [ -x /sbin/weak-modules ]; then
720     rpm -ql $OSD_ZFS_RPM_NAME | grep '\.ko$' |
721         /sbin/weak-modules --add-modules
722 fi
723
724 # If the kernel was built to reject unsupported modules (e.g. not a Lustre
725 # kernel), and this hasn't been overridden in /etc/modprobe.d yet, then
726 # print a warning so that users are aware of this issue.
727 if sysctl kernel.unsupported >/dev/null 2>&1 &&
728    [ "$(sysctl -n kernel.unsupported 2>/dev/null)" = "0" ] &&
729     ! modprobe -c | grep -q "^allow_unsupported_modules[ \t]1" ; then
730      echo "
731      warning: the Lustre modules are not supported by Novell. To use Lustre
732               on this system, you should put
733
734      allow_unsupported_modules 1
735
736      into /etc/modprobe.d/unsupported_modules"
737 fi
738 %endif
739 %if %{with lustre_utils} && %{defined rpm_post_base}
740 %post osd-zfs-mount
741 if [ -x %{rpm_post_base}-mount-osd-zfs.sh ]; then
742         %{rpm_post_base}-mount-osd-zfs.sh %{cross_path} create
743 fi
744 %endif
745 %endif
746
747 %preun modules
748 %if %{defined rpm_post_base}
749 if [ -x %{rpm_post_base}-modules.sh ]; then
750         %{rpm_post_base}-modules.sh %{cross_path} remove
751 fi
752 %else
753 MODULES_RPM_NAME=$(rpm -q %{name}-modules | grep "%{version}-%{release}")
754 rpm -ql $MODULES_RPM_NAME | grep '\.ko$' > /var/run/%{name}-modules || true
755 %endif
756
757 %if %{with ldiskfs}
758 %preun osd-ldiskfs
759 %if %{defined rpm_post_base}
760 if [ -x %{rpm_post_base}-osd-ldiskfs.sh ]; then
761         %{rpm_post_base}-osd-ldiskfs.sh %{cross_path} remove
762 fi
763 %else
764 OSD_LDISKFS_RPM_NAME=$(rpm -q %{name}-osd-ldiskfs | grep "%{version}-%{release}")
765 rpm -ql $OSD_LDISKFS_RPM_NAME | grep '\.ko$' > /var/run/%{name}-osd-ldiskfs || true
766 %endif
767 %if %{with lustre_utils} && %{defined rpm_post_base}
768 %preun osd-ldiskfs-mount
769 if [ -x %{rpm_post_base}-mount-osd-ldiskfs.sh ]; then
770         %{rpm_post_base}-mount-osd-ldiskfs.sh %{cross_path} remove
771 fi
772 %endif
773 %endif
774
775 %if %{with zfs}
776 %preun osd-zfs
777 %if %{defined rpm_post_base}
778 if [ -x %{rpm_post_base}-osd-zfs.sh ]; then
779         %{rpm_post_base}-osd-zfs.sh %{cross_path} remove
780 fi
781 %else
782 OSD_ZFS_RPM_NAME=$(rpm -q %{name}-osd-zfs | grep "%{version}-%{release}")
783 rpm -ql $OSD_ZFS_RPM_NAME | grep '\.ko$' > /var/run/%{name}-osd-zfs || true
784 %endif
785 %if %{with lustre_utils} && %{defined rpm_post_base}
786 %preun osd-zfs-mount
787 if [ -x %{rpm_post_base}-mount-osd-zfs.sh ]; then
788         %{rpm_post_base}-mount-osd-zfs.sh %{cross_path} remove
789 fi
790 %endif
791 %endif
792
793 %if %{undefined cross_path}
794 %postun modules
795 if [ -f /boot/System.map-%{kversion} ]; then
796         depmod -ae -F /boot/System.map-%{kversion} %{kversion} || exit 0
797 else
798         depmod -ae %{kversion} || exit 0
799 fi
800
801 # "weak modules" support
802 # Suse
803 if [ -x /usr/lib/module-init-tools/weak-modules ]; then
804     cat /var/run/%{name}-modules |
805         /usr/lib/module-init-tools/weak-modules --remove-modules
806 fi
807 # RedHat
808 if [ -x /sbin/weak-modules ]; then
809     cat /var/run/%{name}-modules |
810         /sbin/weak-modules --remove-modules
811 fi
812 rm /var/run/%{name}-modules
813
814 %if %{with ldiskfs}
815 %postun osd-ldiskfs
816 if [ -f /boot/System.map-%{kversion} ]; then
817        depmod -ae -F /boot/System.map-%{kversion} %{kversion} || exit 0
818 else
819        depmod -ae %{kversion} || exit 0
820 fi
821
822 # "weak modules" support
823 # Suse
824 if [ -x /usr/lib/module-init-tools/weak-modules ]; then
825     cat /var/run/%{name}-osd-ldiskfs |
826         /usr/lib/module-init-tools/weak-modules --remove-modules
827 fi
828 # RedHat
829 if [ -x /sbin/weak-modules ]; then
830     cat /var/run/%{name}-osd-ldiskfs |
831         /sbin/weak-modules --remove-modules
832 fi
833 rm /var/run/%{name}-osd-ldiskfs
834 %endif
835
836 %if %{with zfs}
837 %postun osd-zfs
838 if [ -f /boot/System.map-%{kversion} ]; then
839        depmod -ae -F /boot/System.map-%{kversion} %{kversion} || exit 0
840 else
841        depmod -ae %{kversion} || exit 0
842 fi
843
844 # "weak modules" support
845 # Suse
846 if [ -x /usr/lib/module-init-tools/weak-modules ]; then
847     cat /var/run/%{name}-osd-zfs |
848         /usr/lib/module-init-tools/weak-modules --remove-modules
849 fi
850 # RedHat
851 if [ -x /sbin/weak-modules ]; then
852     cat /var/run/%{name}-osd-zfs |
853         /sbin/weak-modules --remove-modules
854 fi
855 rm /var/run/%{name}-osd-zfs
856 %endif
857 %endif
858 %endif # with lustre_modules
859
860 %if %{with lustre_tests}
861 %if %{defined rpm_post_base}
862 %post tests
863 if [ -x %{rpm_post_base}-tests.sh ]; then
864         %{rpm_post_base}-tests.sh %{cross_path} create
865 fi
866
867 %preun tests
868 if [ -x %{rpm_post_base}-tests.sh ]; then
869         %{rpm_post_base}-tests.sh %{cross_path} remove
870 fi
871 %else
872 %if %{with lustre_modules}
873 %post tests
874 if [ -f /boot/System.map-%{kversion} ]; then
875         depmod -ae -F /boot/System.map-%{kversion} %{kversion} || exit 0
876 else
877         depmod -ae %{kversion} || exit 0
878 fi
879
880 %postun tests
881 if [ -f /boot/System.map-%{kversion} ]; then
882         depmod -ae -F /boot/System.map-%{kversion} %{kversion} || exit 0
883 else
884         depmod -ae %{kversion} || exit 0
885 fi
886 %endif
887 %endif
888 %endif
889
890 %clean
891 rm -rf $RPM_BUILD_ROOT