source: chapter06/systemd.xml@ d8a0120

7.6-systemd 7.7-systemd 7.8-systemd 7.9-systemd
Last change on this file since d8a0120 was d8a0120, checked in by Krejzi <krejzi@…>, 10 years ago

Update to systemd-215. Update dbus stats.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10653 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 24.0 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-system-systemd" role="wrap">
9 <?dbhtml filename="systemd.html"?>
10
11 <sect1info condition="script">
12 <productname>systemd</productname>
13 <productnumber>&systemd-version;</productnumber>
14 <address>&systemd-url;</address>
15 </sect1info>
16
17 <title>Systemd-&systemd-version;</title>
18
19 <indexterm zone="ch-system-systemd">
20 <primary sortas="a-systemd">systemd</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>The systemd package contains programs for controlling the startup,
27 running, and shutdown of the system.</para>
28
29 <segmentedlist>
30 <segtitle>&buildtime;</segtitle>
31 <segtitle>&diskspace;</segtitle>
32
33 <seglistitem>
34 <seg>&systemd-ch6-sbu;</seg>
35 <seg>&systemd-ch6-du;</seg>
36 </seglistitem>
37 </segmentedlist>
38 </sect2>
39
40 <sect2 role="installation">
41 <title>Installation of systemd</title>
42
43 <para>First, create a file to allow systemd to build when using Util-Linux
44 built in Chapter 5:</para>
45
46<screen><userinput remap="pre">cat &gt; config.cache &lt;&lt; "EOF"
47<literal>KILL=/bin/kill
48HAVE_BLKID=1
49BLKID_LIBS="-lblkid"
50BLKID_CFLAGS="-I/tools/include/blkid"</literal>
51EOF</userinput></screen>
52
53 <para>Additionally, fix a build error when using Util-Linux built in
54 Chapter 5:</para>
55
56<screen><userinput remap="pre">sed -i "s:blkid/::" $(grep -rl "blkid/blkid.h")</userinput></screen>
57
58 <para>Apply a patch so that compat <command>pkg-config</command> files get
59 installed without installing compat libs which are useless on LFS:</para>
60
61<screen><userinput remap="pre">patch -Np1 -i ../&systemd-compat-patch;</userinput></screen>
62
63 <para>Prepare systemd for compilation:</para>
64
65<screen><userinput remap="configure">./configure --prefix=/usr \
66 --sysconfdir=/etc \
67 --localstatedir=/var \
68 --config-cache \
69 --with-rootprefix= \
70 --with-rootlibdir=/lib \
71 --enable-split-usr \
72 --disable-gudev \
73 --without-python \
74 --docdir=/usr/share/doc/systemd-&systemd-version; \
75 --with-dbuspolicydir=/etc/dbus-1/system.d \
76 --with-dbusinterfacedir=/usr/share/dbus-1/interfaces \
77 --with-dbussessionservicedir=/usr/share/dbus-1/services \
78 --with-dbussystemservicedir=/usr/share/dbus-1/system-services</userinput></screen>
79
80 <variablelist>
81 <title>The meaning of the configure options:</title>
82
83 <varlistentry>
84 <term><parameter>--config-cache</parameter></term>
85 <listitem>
86 <para>This switch tells the build system to use
87 the <filename>config.cache</filename> file which
88 was created earlier.</para>
89 </listitem>
90 </varlistentry>
91
92 <varlistentry>
93 <term><parameter>--with-root*</parameter></term>
94 <listitem>
95 <para>These switches ensure that core programs and
96 shared libraries are installed in the subdirectories
97 of the root partition.</para>
98 </listitem>
99 </varlistentry>
100
101 <varlistentry>
102 <term><parameter>--enable-split-usr</parameter></term>
103 <listitem>
104 <para>This switch ensures that systemd will work on
105 systems where /bin, /lib and /sbin directories are not
106 symlinks to their /usr counterparts.</para>
107 </listitem>
108 </varlistentry>
109
110 <varlistentry>
111 <term><parameter>--disable-gudev --without-python</parameter></term>
112 <listitem>
113 <para>These switches disable optional features because
114 LFS does not provide their dependencies.</para>
115 </listitem>
116 </varlistentry>
117
118 <varlistentry>
119 <term><parameter>--with-dbus*</parameter></term>
120 <listitem>
121 <para>These switches ensure that D-Bus configuration files
122 get installed in the correct locations.</para>
123 </listitem>
124 </varlistentry>
125
126 </variablelist>
127
128 <para>Compile the package:</para>
129
130<screen><userinput remap="make">make LIBRARY_PATH=/tools/lib</userinput></screen>
131
132 <para>First, prevent a few test cases from runnin because they fail in
133 a chroot environment:</para>
134
135<screen><userinput remap="test">sed -e "s:test/udev-test.pl::g" \
136 -e "s:test-bus-cleanup\$(EXEEXT) ::g" \
137 -e "s:test-bus-gvariant\$(EXEEXT) ::g" \
138 -e "s:test-dhcp6-client\$(EXEEXT) ::g" \
139 -e "s:test-journal-flush\$(EXEEXT) ::g" \
140 -e "s:test-path-util\$(EXEEXT) ::g" \
141 -e "s:test-sched-prio\$(EXEEXT) ::g" \
142 -e "s:test-strv\$(EXEEXT) ::g" \
143 -i Makefile</userinput></screen>
144
145 <para>To test the results, issue:</para>
146
147<screen><userinput remap="test">make check</userinput></screen>
148
149 <para>Install the package:</para>
150
151<screen><userinput remap="install">make LD_LIBRARY_PATH=/tools/lib install</userinput></screen>
152
153 <para>Move NSS myhostname library to <filename
154 class="directory">/lib</filename>:</para>
155
156<screen><userinput remap="install">mv -v /usr/lib/libnss_myhostname.so.2 /lib</userinput></screen>
157
158 <para>Remove an unnecessary directory:</para>
159
160<screen><userinput remap="install">rm -rfv /usr/lib/rpm</userinput></screen>
161
162 <para>Create the Sysvinit compatibility symlinks, so systemd is used
163 as the default init system:</para>
164
165<screen><userinput remap="install">for tool in runlevel reboot shutdown poweroff halt telinit; do
166 ln -sfv ../bin/systemctl /sbin/${tool}
167done
168ln -sfv ../lib/systemd/systemd /sbin/init</userinput></screen>
169
170 <para>Remove a reference to a non-existent group:</para>
171
172<screen><userinput remap="install">sed -i "s:0775 root lock:0755 root root:g" /usr/lib/tmpfiles.d/legacy.conf</userinput></screen>
173
174 <para>Create the <filename>/etc/machine-id</filename> file needed by
175 Journald:</para>
176
177<screen><userinput remap="install">systemd-machine-id-setup</userinput></screen>
178
179 </sect2>
180
181 <sect2 id="contents-systemd" role="content">
182 <title>Contents of systemd</title>
183
184 <segmentedlist>
185 <segtitle>Installed programs</segtitle>
186 <segtitle>Installed libraries</segtitle>
187 <segtitle>Installed directories</segtitle>
188
189coredumpctl systemd-path systemd-sysusers
190
191 <seglistitem>
192
193 <seg>bootctl, busctl, coredumpctl, halt, hostnamectl, init, journalctl,
194 kernel-install, localectl, loginctl, machinectl, poweroff, reboot,
195 runlevel, shutdown, systemctl, systemd-analyze, systemd-ask-password,
196 systemd-cat, systemd-cgls, systemd-cgtop, systemd-coredumpctl,
197 systemd-delta, systemd-detect-virt, systemd-inhibit,
198 systemd-machine-id-setup, systemd-notify, systemd-nspawn, systemd-path,
199 systemd-run, systemd-stdio-bridge, systemd-sysusers, systemd-tmpfiles,
200 systemd-tty-ask-password-agent, telinit, timedatectl, and udevadm</seg>
201 <seg>libnss_myhostname.so.2, libsystemd.so, libudev.so</seg>
202 <seg>/etc/binfmt.d, /etc/init.d, /etc/kernel, /etc/modules-load.d,
203 /etc/sysctl.d, /etc/systemd, /etc/tmpfiles.d, /etc/udev,
204 /etc/xdg/systemd, /lib/systemd, /lib/udev, /usr/include/systemd,
205 /usr/lib/binfmt.d, /usr/lib/kernel, /usr/lib/modules-load.d,
206 /usr/lib/sysctl.d, /usr/lib/systemd, /usr/lib/tmpfiles.d,
207 /usr/share/doc/systemd-&systemd-version;, /usr/share/systemd,
208 /var/lib/systemd, /var/log/journal</seg>
209 </seglistitem>
210 </segmentedlist>
211
212 <variablelist>
213 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
214 <?dbfo list-presentation="list"?>
215 <?dbhtml list-presentation="table"?>
216
217 <varlistentry id="bootctl">
218 <term><command>bootctl</command></term>
219 <listitem>
220 <para>used to query the firmware and boot manager settings.</para>
221 <indexterm zone="ch-system-systemd bootctl">
222 <primary sortas="b-bootctl">bootctl</primary>
223 </indexterm>
224 </listitem>
225 </varlistentry>
226
227 <varlistentry id="busctl">
228 <term><command>busctl</command></term>
229 <listitem>
230 <para>Used to introspect and monitor the D-Bus bus.</para>
231 <indexterm zone="ch-system-systemd busctl">
232 <primary sortas="b-busctl">busctl</primary>
233 </indexterm>
234 </listitem>
235 </varlistentry>
236
237 <varlistentry id="coredumpctl">
238 <term><command>coredumpctl</command></term>
239 <listitem>
240 <para>Used to retrieve coredumps from the systemd Journal</para>
241 <indexterm zone="ch-system-systemd coredumpctl">
242 <primary sortas="b-coredumpctl">coredumpctl</primary>
243 </indexterm>
244 </listitem>
245 </varlistentry>
246
247 <varlistentry id="halt">
248 <term><command>halt</command></term>
249 <listitem>
250 <para>Normally invokes <command>shutdown</command> with the
251 <parameter>-h</parameter> option, except when already in run-level 0,
252 then it tells the kernel to halt the system; it notes in the
253 file <filename>/var/log/wtmp</filename> that the system is being
254 brought down.</para>
255 <indexterm zone="ch-system-systemd halt">
256 <primary sortas="b-halt">halt</primary>
257 </indexterm>
258 </listitem>
259 </varlistentry>
260
261 <varlistentry id="hostnamectl">
262 <term><command>hostnamectl</command></term>
263 <listitem>
264 <para>Used to query and change the system hostname and related
265 settings.</para>
266 <indexterm zone="ch-system-systemd hostnamectl">
267 <primary sortas="b-hostnamectl">hostnamectl</primary>
268 </indexterm>
269 </listitem>
270 </varlistentry>
271
272 <varlistentry id="init">
273 <term><command>init</command></term>
274 <listitem>
275 <para>The first process to be started when the kernel has initialized
276 the hardware which takes over the boot process and starts all the
277 proceses it is instructed to.</para>
278 <indexterm zone="ch-system-systemd init">
279 <primary sortas="b-init">init</primary>
280 </indexterm>
281 </listitem>
282 </varlistentry>
283
284 <varlistentry id="journalctl">
285 <term><command>journalctl</command></term>
286 <listitem>
287 <para>Used to query the contents of the systemd Journal.</para>
288 <indexterm zone="ch-system-systemd journalctl">
289 <primary sortas="b-journalctl">journalctl</primary>
290 </indexterm>
291 </listitem>
292 </varlistentry>
293
294 <varlistentry id="kernel-install">
295 <term><command>kernel-install</command></term>
296 <listitem>
297 <para>Used to add and remove kernel and initramfs images to and
298 from /boot.</para>
299 <indexterm zone="ch-system-systemd kernel-install">
300 <primary sortas="b-kernel-install">kernel-install</primary>
301 </indexterm>
302 </listitem>
303 </varlistentry>
304
305 <varlistentry id="localectl">
306 <term><command>localectl</command></term>
307 <listitem>
308 <para>Used to query and change the system locale and keyboard layout
309 settings.</para>
310 <indexterm zone="ch-system-systemd localectl">
311 <primary sortas="b-localectl">localectl</primary>
312 </indexterm>
313 </listitem>
314 </varlistentry>
315
316 <varlistentry id="loginctl">
317 <term><command>loginctl</command></term>
318 <listitem>
319 <para>Used to introspect and control the state of the systemd Login
320 Manager.</para>
321 <indexterm zone="ch-system-systemd loginctl">
322 <primary sortas="b-loginctl">loginctl</primary>
323 </indexterm>
324 </listitem>
325 </varlistentry>
326
327 <varlistentry id="machinectl">
328 <term><command>machinectl</command></term>
329 <listitem>
330 <para>Used to introspect and control the state of the systemd Virtual
331 Machine and Container Registration Manager</para>
332 <indexterm zone="ch-system-systemd machinectl">
333 <primary sortas="b-machinectl">machinectl</primary>
334 </indexterm>
335 </listitem>
336 </varlistentry>
337
338 <varlistentry id="poweroff">
339 <term><command>poweroff</command></term>
340 <listitem>
341 <para>Tells the kernel to halt the system and switch off the computer
342 (see <command>halt</command>).</para>
343 <indexterm zone="ch-system-systemd poweroff">
344 <primary sortas="b-poweroff">poweroff</primary>
345 </indexterm>
346 </listitem>
347 </varlistentry>
348
349 <varlistentry id="reboot">
350 <term><command>reboot</command></term>
351 <listitem>
352 <para>Tells the kernel to reboot the system (see
353 <command>halt</command>).</para>
354 <indexterm zone="ch-system-systemd reboot">
355 <primary sortas="b-reboot">reboot</primary>
356 </indexterm>
357 </listitem>
358 </varlistentry>
359
360 <varlistentry id="runlevel">
361 <term><command>runlevel</command></term>
362 <listitem>
363 <para>Reports the previous and the current run-level, as noted in the
364 last run-level record in <filename>/var/run/utmp</filename>.</para>
365 <indexterm zone="ch-system-systemd runlevel">
366 <primary sortas="b-runlevel">runlevel</primary>
367 </indexterm>
368 </listitem>
369 </varlistentry>
370
371 <varlistentry id="shutdown">
372 <term><command>shutdown</command></term>
373 <listitem>
374 <para>Brings the system down in a secure way, signaling all processes
375 and notifying all logged-in users.</para>
376 <indexterm zone="ch-system-systemd shutdown">
377 <primary sortas="b-shutdown">shutdown</primary>
378 </indexterm>
379 </listitem>
380 </varlistentry>
381
382 <varlistentry id="systemctl">
383 <term><command>systemctl</command></term>
384 <listitem>
385 <para>Used to introspect and control the state of the systemd system and
386 service manager.</para>
387 <indexterm zone="ch-system-systemd systemctl">
388 <primary sortas="b-systemctl">systemctl</primary>
389 </indexterm>
390 </listitem>
391 </varlistentry>
392
393 <varlistentry id="systemd-analyze">
394 <term><command>systemd-analyze</command></term>
395 <listitem>
396 <para>Used to determine system boot-up performance of the current boot.
397 </para>
398 <indexterm zone="ch-system-systemd systemd-analyze">
399 <primary sortas="b-systemd-analyze">systemd-analyze</primary>
400 </indexterm>
401 </listitem>
402 </varlistentry>
403
404 <varlistentry id="systemd-ask-password">
405 <term><command>systemd-ask-password</command></term>
406 <listitem>
407 <para>Used to query a system password or passphrase from the user, using a
408 question message specified on the command line.</para>
409 <indexterm zone="ch-system-systemd systemd-ask-password">
410 <primary sortas="b-systemd-ask-password">systemd-ask-password</primary>
411 </indexterm>
412 </listitem>
413 </varlistentry>
414
415 <varlistentry id="systemd-cat">
416 <term><command>systemd-cat</command></term>
417 <listitem>
418 <para>Used to connect STDOUT and STDERR of a process with the Journal.
419 </para>
420 <indexterm zone="ch-system-systemd systemd-cat">
421 <primary sortas="b-systemd-cat">systemd-cat</primary>
422 </indexterm>
423 </listitem>
424 </varlistentry>
425
426 <varlistentry id="systemd-cgls">
427 <term><command>systemd-cgls</command></term>
428 <listitem>
429 <para>Recursively shows the contents of the selected Linux control group
430 hierarchy in a tree.</para>
431 <indexterm zone="ch-system-systemd systemd-cgls">
432 <primary sortas="b-systemd-cgls">systemd-cgls</primary>
433 </indexterm>
434 </listitem>
435 </varlistentry>
436
437 <varlistentry id="systemd-cgtop">
438 <term><command>systemd-cgtop</command></term>
439 <listitem>
440 <para>Shows the top control groups of the local Linux control group hierarchy,
441 ordered by their CPU, memory and disk I/O load.</para>
442 <indexterm zone="ch-system-systemd systemd-cgtop">
443 <primary sortas="b-systemd-cgtop">systemd-cgtop</primary>
444 </indexterm>
445 </listitem>
446 </varlistentry>
447
448 <varlistentry id="systemd-delta">
449 <term><command>systemd-delta</command></term>
450 <listitem>
451 <para>Used to identify and compare configuration files in
452 <filename class="directory">/etc</filename> that override default
453 counterparts in <filename class="directory">/usr</filename>.</para>
454 <indexterm zone="ch-system-systemd systemd-delta">
455 <primary sortas="b-systemd-delta">systemd-delta</primary>
456 </indexterm>
457 </listitem>
458 </varlistentry>
459
460 <varlistentry id="systemd-detect-virt">
461 <term><command>systemd-detect-virt</command></term>
462 <listitem>
463 <para>Detects execution in a virtualized environment.</para>
464 <indexterm zone="ch-system-systemd systemd-detect-virt">
465 <primary sortas="b-systemd-detect-virt">systemd-detect-virt</primary>
466 </indexterm>
467 </listitem>
468 </varlistentry>
469
470 <varlistentry id="systemd-inhibit">
471 <term><command>systemd-inhibit</command></term>
472 <listitem>
473 <para>Used to execute a program with a shutdown, sleep or idle inhibitor lock
474 taken.</para>
475 <indexterm zone="ch-system-systemd systemd-inhibit">
476 <primary sortas="b-systemd-inhibit">systemd-inhibit</primary>
477 </indexterm>
478 </listitem>
479 </varlistentry>
480
481 <varlistentry id="systemd-machine-id-setup">
482 <term><command>systemd-machine-id-setup</command></term>
483 <listitem>
484 <para>Used by system installer tools to initialize the machine ID stored in
485 <filename>/etc/machine-id</filename> at install time with a randomly
486 generated ID.</para>
487 <indexterm zone="ch-system-systemd systemd-machine-id-setup">
488 <primary sortas="b-systemd-machine-id-setup">systemd-machine-id-setup</primary>
489 </indexterm>
490 </listitem>
491 </varlistentry>
492
493 <varlistentry id="systemd-notify">
494 <term><command>systemd-notify</command></term>
495 <listitem>
496 <para>Used by daemon scripts to notify the init system about status changes.
497 </para>
498 <indexterm zone="ch-system-systemd systemd-notify">
499 <primary sortas="b-systemd-notify">systemd-notify</primary>
500 </indexterm>
501 </listitem>
502 </varlistentry>
503
504 <varlistentry id="systemd-nspawn">
505 <term><command>systemd-nspawn</command></term>
506 <listitem>
507 <para>Used to run a command or OS in a light-weight namespace container.</para>
508 <indexterm zone="ch-system-systemd systemd-nspawn">
509 <primary sortas="b-systemd-nspawn">systemd-nspawn</primary>
510 </indexterm>
511 </listitem>
512 </varlistentry>
513
514 <varlistentry id="systemd-path">
515 <term><command>systemd-path</command></term>
516 <listitem>
517 <para>Used to query system and user paths.</para>
518 <indexterm zone="ch-system-systemd systemd-path">
519 <primary sortas="b-systemd-path">systemd-path</primary>
520 </indexterm>
521 </listitem>
522 </varlistentry>
523
524 <varlistentry id="systemd-run">
525 <term><command>systemd-run</command></term>
526 <listitem>
527 <para>Used to create and start a transient .service or a .scope unit and
528 run the specified command in it.</para>
529 <indexterm zone="ch-system-systemd systemd-run">
530 <primary sortas="b-systemd-run">systemd-run</primary>
531 </indexterm>
532 </listitem>
533 </varlistentry>
534
535<!-- <varlistentry id="systemd-stdio-bridge">
536 <term><command>systemd-stdio-bridge</command></term>
537 <listitem>
538 <para>To be completed</para>
539 <indexterm zone="ch-system-systemd systemd-stdio-bridge">
540 <primary sortas="b-systemd-stdio-bridge">systemd-stdio-bridge</primary>
541 </indexterm>
542 </listitem>
543 </varlistentry> -->
544
545 <varlistentry id="systemd-sysusers">
546 <term><command>systemd-sysusers</command></term>
547 <listitem>
548 <para>Creates system users and groups, based on the file format and location
549 specified in <filename class="directory">sysusers.d</filename>.</para>
550 <indexterm zone="ch-system-systemd systemd-sysusers">
551 <primary sortas="b-systemd-sysusers">systemd-sysusers</primary>
552 </indexterm>
553 </listitem>
554 </varlistentry>
555
556 <varlistentry id="systemd-tmpfiles">
557 <term><command>systemd-tmpfiles</command></term>
558 <listitem>
559 <para>Creates, deletes and cleans up volatile and temporary files and directories,
560 based on the configuration file format and location specified in
561 <filename class="directory">tmpfiles.d</filename> directories.</para>
562 <indexterm zone="ch-system-systemd systemd-tmpfiles">
563 <primary sortas="b-systemd-tmpfiles">systemd-tmpfiles</primary>
564 </indexterm>
565 </listitem>
566 </varlistentry>
567
568 <varlistentry id="systemd-tty-ask-password-agent">
569 <term><command>systemd-tty-ask-password-agent</command></term>
570 <listitem>
571 <para>Used to list or process pending systemd password requests</para>
572 <indexterm zone="ch-system-systemd systemd-tty-ask-password-agent">
573 <primary sortas="b-systemd-tty-ask-password-agent">systemd-tty-ask-password-agent</primary>
574 </indexterm>
575 </listitem>
576 </varlistentry>
577
578 <varlistentry id="telinit">
579 <term><command>telinit</command></term>
580 <listitem>
581 <para>Tells <command>init</command> which run-level to change to.</para>
582 <indexterm zone="ch-system-systemd telinit">
583 <primary sortas="b-telinit">telinit</primary>
584 </indexterm>
585 </listitem>
586 </varlistentry>
587
588 <varlistentry id="timedatectl">
589 <term><command>timedatectl</command></term>
590 <listitem>
591 <para>Used to query and change the system clock and its settings.
592 </para>
593 <indexterm zone="ch-system-systemd timedatectl">
594 <primary sortas="b-timedatectl">timedatectl</primary>
595 </indexterm>
596 </listitem>
597 </varlistentry>
598
599 <varlistentry id="udevadm">
600 <term><command>udevadm</command></term>
601 <listitem>
602 <para>Generic Udev administration tool: controls the udevd daemon,
603 provides info from the Udev database, monitors uevents, waits for
604 uevents to finish, tests Udev configuration, and triggers uevents
605 for a given device.</para>
606 <indexterm zone="ch-system-systemd udevadm">
607 <primary sortas="b-udevadm">udevadm</primary>
608 </indexterm>
609 </listitem>
610 </varlistentry>
611
612 <varlistentry id="libsystemd">
613 <term><filename class="libraryfile">libsystemd</filename></term>
614 <listitem>
615 <para>systemd utility library.</para>
616 <indexterm zone="ch-system-systemd libsystemd">
617 <primary sortas="c-libsystemd">libsystemd</primary>
618 </indexterm>
619 </listitem>
620 </varlistentry>
621
622 <varlistentry id="libudev">
623 <term><filename class="libraryfile">libudev</filename></term>
624 <listitem>
625 <para>A library to access Udev device information.</para>
626 <indexterm zone="ch-system-systemd libudev">
627 <primary sortas="c-libudev">libudev</primary>
628 </indexterm>
629 </listitem>
630 </varlistentry>
631
632 </variablelist>
633
634 </sect2>
635
636</sect1>
Note: See TracBrowser for help on using the repository browser.