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