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