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