Whamcloud - gitweb
LU-11917 tests: wait for test_257 to finish recovery
[fs/lustre-release.git] / lustre.spec.in
1 # lustre.spec
2
3 # Declare rpmbuild --with/--without parameters
4 %bcond_without servers
5 %bcond_without ldiskfs
6 %bcond_with zfs
7 %bcond_without lustre_tests
8 %bcond_without lustre_utils
9 %bcond_without lustre_iokit
10 %bcond_without lustre_modules
11 %bcond_with snmp
12 %bcond_with gss
13 %bcond_with gss_keyring
14 %bcond_without manpages
15 %bcond_without shared
16 %bcond_without static
17 %bcond_with    systemd
18
19 # By default both gss and gss keyring are disabled.
20 # gss keyring requires the gss core. If the builder
21 # request gss_keyring we must enable gss core even if
22 # the builder attempts to disable gss.
23 %if %{with gss_keyring}
24     %define with_gss
25 %endif
26
27 %if %{without servers}
28     # --without servers overrides --with {ldiskfs|zfs}
29     # so undefine the internal variables set by bcond_*
30     %undefine with_ldiskfs
31     %undefine with_zfs
32 %endif
33
34 %{!?version: %global version @VERSION@}
35 %{!?kver:    %global kver    %(uname -r)}
36 %{!?kdir:    %global kdir    /lib/modules/%{kver}/source}
37 %{!?kobjdir: %global kobjdir %(if [ "%{kdir}" = "/lib/modules/%{kver}/source" ]; then echo "/lib/modules/%{kver}/build"; else echo "%{kdir}"; fi)}
38
39 # as an alternative to this implementation we could simply "make -C $kdir kernelversion"
40 %{!?kversion: %global kversion %(files="include/generated/utsrelease.h include/linux/utsrelease.h include/linux/version.h"; for f in $files; do if test -r %{kobjdir}/$f && grep UTS_RELEASE %{kobjdir}/$f >/dev/null; then sed -ne '/^#define UTS_RELEASE/s/.*"\\(.*\\)"$/\\1/p' %{kobjdir}/$f; break; fi; done)}
41
42 # We set this because kernel_module_package has its own method of identifying
43 # which kernel to build against, and it is unlikely that its decision will
44 # match with Lustre's method of selecting which kernel to build against.
45 # By setting this variable, we override kernel_module_package's kernel
46 # selection with our selection.
47 %{!?kernel_version: %global kernel_version %kversion}
48
49 # in order to get kernel symset and/or kernel module dependencies into
50 # the RPM, in order to support weak-modules, the internal dependency gen-
51 # erator needs to be disabled
52 # this is done with (reduce the double % down to a single %):
53 #
54 # %%global _use_internal_dependency_generator 0
55 #
56 # on SLES10, /usr/lib/rpm/macros already sets this, so no harm in also
57 # defining it here (until Suse changes their mind)
58 #
59 # on RHEL5, however, we do need to explicitly disable the internal dep-
60 # endency generator and allow the external one be used
61 # but since RedHat's kABI is only a subset of the total kernel ABI, it
62 # doesn't include all of the symbols we (or OFED for that matter) need
63 # until RedHat includes all of the symbols we need in their symsets we
64 # cannot support weak-modules
65 # we did e-mail the maintainer of all of this stuff @redhat but got no
66 # response from them
67 #%%global _use_internal_dependency_generator 0
68
69 # Set the package name prefix
70 %if %{undefined lustre_name}
71     %if %{with servers}
72         %global lustre_name lustre
73     %else
74         %global lustre_name lustre-client
75     %endif
76 %endif
77
78 %if %{undefined kmoddir}
79     %if %{defined kernel_module_package_moddir}
80         %global kmoddir %{kernel_module_package_moddir}
81     %else
82         %if %{defined suse_kernel_module_package}
83             %global kmoddir updates
84         %else
85             %global kmoddir extra
86         %endif
87     %endif
88 %endif
89
90 %global modules_fs_path /lib/modules/%{kversion}/%{kmoddir}
91
92 %if %{_vendor}=="redhat" || %{_vendor}=="fedora"
93         %global requires_yaml_name libyaml
94         %global requires_kmod_name kmod-%{lustre_name}
95         %if %{with lustre_tests}
96                 %global requires_kmod_tests_name kmod-%{lustre_name}-tests
97         %endif
98         %global requires_kmod_version %{version}
99 %else   #for Suse
100         %global requires_yaml_name libyaml-0-2
101         %global requires_kmod_name %{lustre_name}-kmp
102         %if %{with lustre_tests}
103                 %global requires_kmod_tests_name %{lustre_name}-tests-kmp
104         %endif
105         %define krequires %(echo %{kversion} | sed -e 's/\.x86_64$//' -e 's/\.i[3456]86$//' -e 's/-smp$//' -e 's/-bigsmp$//' -e 's/[-.]ppc64$//' -e 's/\.aarch64$//' -e 's/-default$//')
106         %if 0%{?suse_version} >= 1200
107                 %global requires_kmod_version %{version}_k%(echo %{krequires} | sed -r 'y/-/_/; s/^(2\.6\.[0-9]+)_/\\1.0_/;')
108         %else
109                 %global requires_kmod_version %{version}_%(echo %{krequires} | sed -r 'y/-/_/; s/^(2\.6\.[0-9]+)_/\\1.0_/;')
110         %endif
111 %endif
112
113 # RHEL >= 7 comes with systemd
114 %if 0%{?rhel} >= 7
115 %define with_systemd 1
116 %endif
117
118 # Fedora >= 15 comes with systemd, but only >= 18 has
119 # the proper macros
120 %if 0%{?fedora} >= 18
121 %define with_systemd 1
122 %endif
123
124 # opensuse >= 12.1 comes with systemd, but only >= 13.1
125 # has the proper macros
126 %if 0%{?suse_version} >= 1310
127 %define with_systemd 1
128 %endif
129
130 Summary: Lustre File System
131 Name: %{lustre_name}
132 Version: %{version}
133 Release: 1%{?dist}
134 License: GPL
135 Group: System Environment/Kernel
136 Source: lustre-%{version}.tar.gz
137 Source1: kmp-lustre.preamble
138 Source2: kmp-lustre.files
139 Source3: kmp-lustre-osd-ldiskfs.preamble
140 Source4: kmp-lustre-osd-ldiskfs.files
141 Source5: kmp-lustre-osd-zfs.preamble
142 Source6: kmp-lustre-osd-zfs.files
143 Source7: kmp-lustre-tests.files
144 URL: https://wiki.whamcloud.com/
145 BuildRoot: %{_tmppath}/lustre-%{version}-root
146 Requires: %{requires_kmod_name} = %{requires_kmod_version} zlib
147 Requires: %{requires_yaml_name}
148 BuildRequires: libtool libyaml-devel zlib-devel
149 %if %{with servers}
150 Requires: lustre-osd
151 Requires: lustre-osd-mount
152 Obsoletes: lustre-client < %{version}
153 Provides: lustre-client = %{version}-%{release}
154 %endif
155 # GSS requires this: BuildRequires: pkgconfig, libgssapi-devel >= 0.10
156 %if %{_vendor}=="redhat" || %{_vendor}=="fedora"
157 #suse don't support selinux
158 BuildRequires: libselinux-devel
159 Requires: libselinux
160 %endif
161 %if %{with lustre_modules}
162 BuildRequires: %kernel_module_package_buildreqs
163 %if %{_vendor}=="redhat"
164 BuildRequires: redhat-rpm-config
165 %endif
166 %endif
167
168 %if %{with systemd}
169 Requires(post): systemd
170 Requires(preun): systemd
171 Requires(postun): systemd
172 BuildRequires: systemd
173 %endif
174
175 %description
176 Userspace tools and files for the Lustre file system.
177
178 %if %{with lustre_modules}
179 %if 0%{?rhel} == 7
180 # until we have achieved full kABI compatibility we need to
181 # restrict the kernel range that can be used to the kernel
182 # version from the RHEL minor release
183 # this is supposed to be done for kmods automatically but
184 # RHBZ#1467319 seems to be getting in the way
185 # this is true for el7.0 through el7.4
186 %define preamble %{expand:%(
187 TMPFILE=`mktemp`
188 cat %{SOURCE1} > $TMPFILE
189 kver=%{kver}
190 linuxversion=${kver%%%%-*}
191 linuxrelease=${kver##*-}
192 kabiminor=${linuxrelease%%%%.*}
193 echo "Requires:       kernel < $linuxversion-$((kabiminor+1)), kernel >= $linuxversion-$((kabiminor))" >> $TMPFILE
194 echo $TMPFILE
195 )}
196 %else
197 %define preamble %{SOURCE1}
198 %endif
199 %kernel_module_package -n %{name} -p %preamble -f %SOURCE2 default
200
201 %if %{with ldiskfs}
202 %kernel_module_package -n %{name}-osd-ldiskfs -p %SOURCE3 -f %SOURCE4 default
203 %if %{with lustre_utils}
204 %package osd-ldiskfs-mount
205 Summary: osd-ldiskfs-mount contains mount's ldiskfs specific dso.
206 Provides: lustre-osd-mount = %{version}-%{fullrelease}
207 Group: System Environment/Kernel
208
209 %description osd-ldiskfs-mount
210 LDISKFS hooks for mount/mkfs into a dynamic library.
211
212 %endif  # with lustre_utils
213 %endif  # with ldiskfs
214
215 %if %{with zfs}
216 %kernel_module_package -n %{name}-osd-zfs -p %SOURCE5 -f %SOURCE6 default
217 %if %{with lustre_utils}
218 %package osd-zfs-mount
219 Summary: osd-zfs-mount contains mount's zfs specific dso.
220 Provides: lustre-osd-mount = %{version}-%{fullrelease}
221 Group: System Environment/Kernel
222
223 %description osd-zfs-mount
224 ZFS hooks for mount/mkfs into a dynamic library.
225
226 %endif  # with lustre_utils
227 %endif  # with zfs
228
229 %endif # with lustre_modules
230
231 %if %{with servers}
232 %package resource-agents
233 Summary: HA Resuable Cluster Resource Scripts for Lustre
234 Group: System Environment/Base
235 Requires: lustre
236 Requires: resource-agents
237
238 %description resource-agents
239 A set of scripts to operate Lustre resources in a High Availablity
240 environment for both Pacemaker and rgmanager.
241 %endif
242
243 %if %{with lustre_tests}
244 %package tests
245 Summary: Lustre testing framework
246 Group: System Environment/Kernel
247 Provides: %{name}-tests = %{version}
248 %if %{with lustre_iokit}
249 Requires: %{name} = %{version}, lustre-iokit
250 %else
251 Requires: %{name} = %{version}
252 %endif
253 Requires: %{requires_kmod_name} = %{requires_kmod_version}
254 Requires: %{requires_kmod_tests_name} = %{requires_kmod_version}
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_modules}
262 %kernel_module_package -n %{name}-tests -f %SOURCE7 default
263 %endif
264 %endif
265
266 %if %{with lustre_iokit}
267 %package -n lustre-iokit
268 Summary: The Lustre IO-Kit is a collection of benchmark tools for a cluster with the Lustre file system.
269 Group: Applications/System
270 Requires: python > 2.2, sg3_utils
271
272 %description -n lustre-iokit
273 This package includes five tools:
274 sgpdd-survey:
275 A test of the 'bare metal' performance, bypassing as much of the kernel as we can. Uses the sgp_dd utility.
276
277 obdfilter-survey
278 This survey can be run in 3 modes to test disk I/O including the filesystem,
279 network I/O, and disk I/O via the network.  The script does sequential I/O
280 with varying numbers of threads and objects (files) by using lctl::test_brw
281 to drive the echo_client connected to local or remote obdfilter instances,
282 or remote obdecho instances.
283
284 ost-survey
285 This survey tests the client-to-disk performance of individual OSTs, and
286 ranks then for comparison.
287
288 stats-collect
289 This script will collect IO stats on a defined set of nodes.
290
291 ior-survey:
292 A script to run the IOR benchmark. The latest version can be downloaded from
293 http://www.llnl.gov/asci/purple/benchmarks/limited/ior/
294
295 mds-survey:
296 This survey tests the local metadata performance using the echo_client to drive
297 the MDD layer to perform operations. It is run with multiple threads (to
298 simulate MDT service threads) locally on the MDS node, and does not need Lustre
299 clients in order to run
300 %endif
301
302 %if 0%{?suse_version}
303 %debug_package
304 %endif
305 %prep
306 %setup -qn lustre-%{version}
307 ln lustre/ChangeLog ChangeLog-lustre
308 ln lnet/ChangeLog ChangeLog-lnet
309
310 %build
311 # Set an explicit path to our Linux tree, if we can.
312 cd $RPM_BUILD_DIR/lustre-%{version}
313 # override %optflags so that the vendor's overzealous flags don't create
314 # build failures
315 %define optflags -g -O2 -Werror
316
317 CONFIGURE_ARGS="%{?configure_args}"
318 if [ -n "$CONFIGURE_ARGS" ]; then
319         # make sure %%kdir and %%kobjdir are not in the configure arguments
320         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux=[^ ][^ ]* \?//')
321         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux-obj=[^ ][^ ]* \?//')
322         # remove --with-kmp-moddir from configure arguments,
323         # it will be set --with-kmp-moddir=%%kmoddir
324         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-kmp-moddir=[^ ][^ ]* \?//')
325 fi
326
327 # we need to eval "configure" because $CONFIGURE_ARGS could have a quoted
328 # string in it which we don't want word splitted by the shell
329 # also remove (build|host|target) options because they will be specified
330 # inside $CONFIGURE_ARGS
331 # kmod tools/scripts require %{name} directory with kernel modules
332 %define eval_configure %(echo '%configure' | sed -e 's#\./configure#eval ./configure#' -e 's/--\\(build\\|host\\|target\\)=[^ ][^ ]* //g')
333
334 %eval_configure $CONFIGURE_ARGS \
335         %{?with_lustre_tests:--enable-tests}%{!?with_lustre_tests:--disable-tests} \
336         %{?with_lustre_utils:--enable-utils}%{!?with_lustre_utils:--disable-utils} \
337         %{?with_lustre_modules:--enable-modules}%{!?with_lustre_modules:--disable-modules} \
338         %{!?with_shared:--disable-shared} \
339         %{!?with_static:--disable-static} \
340         %{!?with_lustre_iokit:--disable-iokit} \
341         %{!?with_ldiskfs:--disable-ldiskfs} \
342         %{!?with_servers:--disable-server} \
343         %{!?with_zfs:--without-zfs} \
344         %{!?with_snmp:--disable-snmp} \
345         %{!?with_gss:--disable-gss} \
346         %{!?with_gss_keyring:--disable-gss-keyring} \
347         %{!?with_manpages:--disable-manpages} \
348         %{!?with_systemd:--with-systemdsystemunitdir=no} \
349         %{?with_systemd:--with-systemdsystemunitdir=%{_unitdir}} \
350         --with-linux=%{kdir} \
351         --with-linux-obj=%{kobjdir} \
352         --with-kmp-moddir=%{kmoddir}/%{name}
353
354 make %{?_smp_mflags} -s %{?make_args}
355
356 %install
357 make install DESTDIR=$RPM_BUILD_ROOT
358
359 # RHEL's kernel_module_path macro expects that all the modules
360 # in a kmod package will be in modules_fs_path/<sub packagename>
361 # but Lustre installs all of the modules in a single pass into
362 # a shared location.  Since this is a restriction imposed by
363 # RHEL, we handle this here in the spec file rather than in
364 # Lustre's build system.  This is not expected to bother SLES's
365 # kernel_module_path macro.
366 basemodpath=$RPM_BUILD_ROOT%{modules_fs_path}/%{lustre_name}
367 %if %{with ldiskfs}
368 mkdir -p $basemodpath-osd-ldiskfs/fs
369 mv $basemodpath/fs/osd_ldiskfs.ko $basemodpath-osd-ldiskfs/fs/osd_ldiskfs.ko
370 mv $basemodpath/fs/ldiskfs.ko $basemodpath-osd-ldiskfs/fs/ldiskfs.ko
371 %endif
372 %if %{with zfs}
373 mkdir -p $basemodpath-osd-zfs/fs
374 mv $basemodpath/fs/osd_zfs.ko $basemodpath-osd-zfs/fs/osd_zfs.ko
375 %endif
376 %if %{with lustre_tests}
377 mkdir -p $basemodpath-tests/fs
378 mv $basemodpath/fs/llog_test.ko $basemodpath-tests/fs/llog_test.ko
379 mkdir -p $RPM_BUILD_ROOT%{_libdir}/lustre/tests/kernel/
380 mv $basemodpath/fs/kinode.ko $RPM_BUILD_ROOT%{_libdir}/lustre/tests/kernel/
381 %endif
382
383 :> lustre.files
384
385 %if %{with servers} && %{with lustre_utils}
386 # The .ha_v2 extension identifies the heartbeat resource agent as using
387 # legacy syntax. Install a compatibility symlink to avoid conflicts when
388 # newer-style agents are added.
389 ln -s Lustre.ha_v2 $RPM_BUILD_ROOT%{_sysconfdir}/ha.d/resource.d/Lustre
390 echo '%{_sysconfdir}/ha.d/resource.d/Lustre.ha_v2' >>lustre.files
391 echo '%{_sysconfdir}/ha.d/resource.d/Lustre' >>lustre.files
392 %endif
393
394 # systemd is on redhat, fedora, and suse
395 %if %{with systemd}
396 echo '%{_unitdir}/lnet.service' >>lustre.files
397 %endif
398
399 %if %{_vendor}=="redhat"
400 # The following scripts are Red Hat specific
401 %if %{with servers}
402 echo '%{_sysconfdir}/init.d/lustre' >>lustre.files
403 echo '%{_sysconfdir}/sysconfig/lustre' >>lustre.files
404 %if %{with gss_keyring}
405 echo '%{_sysconfdir}/init.d/lsvcgss' >>lustre.files
406 echo '%{_sysconfdir}/sysconfig/lsvcgss' >>lustre.files
407 %endif
408 %endif
409
410 %if %{without systemd}
411 echo '%{_sysconfdir}/init.d/lnet' >>lustre.files
412 %endif
413 %endif
414 %if %{with gss_keyring}
415 echo '%config(noreplace) %{_sysconfdir}/request-key.d/lgssc.conf' >>lustre.files
416 %endif
417
418 # fc18 needs 'x' permission for library files
419 find $RPM_BUILD_ROOT -name \*.so -type f -exec chmod +x {} \;
420
421 rm -f $RPM_BUILD_ROOT%{_libdir}/liblnetconfig.la
422 %if %{with static}
423 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.a' >>lustre.files
424 %endif
425 %if %{with shared}
426 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so' >>lustre.files
427 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so.*' >>lustre.files
428 %endif
429
430 %if %{with ldiskfs}
431 echo '%{_libdir}/libiam.a' >>lustre.files
432 %endif
433
434 %if %{with snmp}
435 mkdir -p $RPM_BUILD_ROOT/%{_libdir}/lustre/snmp
436 echo '%{_libdir}/lustre/snmp' >>lustre.files
437 %endif
438
439 %if %{with lustre_utils}
440 mkdir -p $RPM_BUILD_ROOT/%{_datadir}/lustre
441 if [ -d $RPM_BUILD_ROOT%{_libdir}/lustre ] ; then
442         find $RPM_BUILD_ROOT%{_libdir}/@PACKAGE@ -name \*.la -type f -exec rm -f {} \;
443 fi
444 %endif
445
446 %if %{with lustre_modules}
447 # mark modules executable for find-debuginfo.sh
448 find $RPM_BUILD_ROOT/lib/modules -name \*.ko -type f -exec chmod u+x {} \;
449 %endif
450
451 rm -f $RPM_BUILD_ROOT%{_libdir}/liblustreapi.la
452
453 %if %{with lustre_tests}
454 :> lustre-tests.files
455 echo '%{_libdir}/lustre/tests/*' >>lustre-tests.files
456 echo '%{_bindir}/mcreate' >>lustre-tests.files
457 echo '%{_bindir}/munlink' >>lustre-tests.files
458 echo '%{_sbindir}/wirecheck' >>lustre-tests.files
459 echo '%{_sbindir}/wiretest' >>lustre-tests.files
460 %endif
461
462 %files -f lustre.files
463 %defattr(-,root,root)
464 %{_sbindir}/*
465 %if %{with lustre_tests}
466 %exclude %{_sbindir}/wirecheck
467 %exclude %{_sbindir}/wiretest
468 %endif
469 %if %{with zfs}
470 %exclude %{_sbindir}/zfsobj2fid
471 %endif
472 %if %{with lustre_utils}
473 %if %{with servers}
474 %{_libexecdir}/lustre/lc_common
475 %{_libexecdir}/lustre/haconfig
476 %{_bindir}/lustre_req_history
477 %endif
478
479 %{_bindir}/llobdstat
480 %{_bindir}/llstat
481 %{_bindir}/plot-llstat
482
483 %{_bindir}/lfs
484 %{_bindir}/lfs_migrate
485 /sbin/mount.lustre
486 %if %{with static}
487 %{_libdir}/liblustreapi.a
488 %endif
489 %if %{with shared}
490 %{_libdir}/liblustreapi.so*
491 %endif
492 %if %{with manpages}
493 %{_mandir}/man?/*
494 %endif
495 %{_datadir}/lustre
496 %{_includedir}/lustre
497 %{_includedir}/linux/lnet
498 %{_includedir}/linux/lustre
499 %endif
500 %{_sysconfdir}/udev/rules.d/99-lustre.rules
501 %if %{with servers}
502 %{_sysconfdir}/udev/rules.d/99-lustre-server.rules
503 %endif
504 %if %{with zfs}
505 %config(noreplace) %{_sysconfdir}/ldev.conf
506 %endif
507 %config(noreplace) %{_sysconfdir}/lnet.conf
508 %config(noreplace) %{_sysconfdir}/modprobe.d/ko2iblnd.conf
509 %if %{with lustre_utils}
510 %config(noreplace) %{_sysconfdir}/lnet_routes.conf
511 %endif
512 %if %{with lustre_modules}
513
514 %if %{with shared}
515 %if %{with ldiskfs}
516 %if %{with lustre_utils}
517 %files osd-ldiskfs-mount
518 %defattr(-,root,root)
519 %{_libdir}/@PACKAGE@/mount_osd_ldiskfs.so
520 %endif
521 %endif
522 %endif
523
524 %if %{with shared}
525 %if %{with zfs}
526 %if %{with lustre_utils}
527 %files osd-zfs-mount
528 %defattr(-,root,root)
529 %{_libdir}/@PACKAGE@/mount_osd_zfs.so
530 %{_sysconfdir}/zfs/zed.d/*
531 %endif
532 %endif
533 %endif
534
535 %endif # with lustre_modules
536
537 %if %{with servers}
538 %files resource-agents
539 %defattr(0755,root,root)
540 %{_prefix}/lib/ocf/resource.d/lustre/
541 %endif
542
543 %if %{with lustre_tests}
544 %files tests -f lustre-tests.files
545 %defattr(-,root,root)
546 %endif
547
548 %if %{with lustre_iokit}
549 %files -n lustre-iokit
550 %defattr(-, root, root)
551 %{_bindir}/iokit-config
552 %{_bindir}/iokit-gather-stats
553 %{_bindir}/iokit-libecho
554 %{_bindir}/iokit-lstats
555 %{_bindir}/iokit-parse-ior
556 %{_bindir}/iokit-plot-obdfilter
557 %{_bindir}/iokit-plot-ost
558 %{_bindir}/iokit-plot-sgpdd
559 %{_bindir}/ior-survey
560 %{_bindir}/mds-survey
561 %{_bindir}/obdfilter-survey
562 %{_bindir}/ost-survey
563 %{_bindir}/sgpdd-survey
564 %doc lustre-iokit/ior-survey/README.ior-survey
565 %doc lustre-iokit/mds-survey/README.mds-survey
566 %doc lustre-iokit/obdfilter-survey/README.obdfilter-survey
567 %doc lustre-iokit/ost-survey/README.ost-survey
568 %doc lustre-iokit/sgpdd-survey/README.sgpdd-survey
569 %doc lustre-iokit/stats-collect/README.iokit-lstats
570 %endif
571
572 %post
573 %if %{with systemd}
574 %systemd_post lnet.service
575 %endif
576
577 %preun
578 %if %{with systemd}
579 %systemd_preun lnet.service
580 %endif
581
582 %postun
583 %if %{with systemd}
584 %systemd_postun_with_restart lnet.service
585 %endif
586
587 %clean
588 rm -rf $RPM_BUILD_ROOT
589 rm -rf %{_tmppath}/kmp