source: postlfs/config/profile.xml@ 5e9adc53

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 5e9adc53 was 104733c, checked in by Ken Moffat <ken@…>, 15 years ago

Fix typos (patch from Guy Dalziel).

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@7826 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 18.4 KB
RevLine 
[f8d632a]1<?xml version="1.0" encoding="ISO-8859-1"?>
[6732c094]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[f8d632a]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6]>
7
[78b3cd61]8<sect1 id="postlfs-config-profile" xreflabel="The Bash Shell Startup Files">
[2753b70b]9 <?dbhtml filename="profile.html"?>
10
11 <sect1info>
12 <othername>$LastChangedBy$</othername>
13 <date>$Date$</date>
14 </sect1info>
15
16 <title>The Bash Shell Startup Files</title>
17
18 <para>The shell program <filename>/bin/bash</filename> (hereafter
19 referred to as just "the shell") uses a collection of startup files to
20 help create an environment. Each file has a specific use and
21 may affect login and interactive environments differently. The files in
[384039a]22 the <filename class="directory">/etc</filename> directory generally provide
[2753b70b]23 global settings. If an equivalent file exists in your home directory it may
24 override the global settings.</para>
25
26 <para>An interactive login shell is started after a successful login, using
[384039a]27 <filename>/bin/login</filename>, by reading the <filename>/etc/passwd</filename>
28 file. This shell invocation normally reads <filename>/etc/profile</filename>
29 and its private equivalent <filename>~/.bash_profile</filename> upon
[2753b70b]30 startup.</para>
31
32 <para>An interactive non-login shell is normally started at the command-line
[ba0deaad]33 using a shell program (e.g.,
34 <prompt>[prompt]$</prompt><command>/bin/bash</command>) or by the
[2753b70b]35 <command>/bin/su</command> command. An interactive non-login shell is also
36 started with a terminal program such as <command>xterm</command> or
37 <command>konsole</command> from within a graphical environment. This type of
38 shell invocation normally copies the parent environment and then reads the
39 user's <filename>~/.bashrc</filename> file for additional startup configuration
40 instructions.</para>
41
42 <para>A non-interactive shell is usually present when a shell script is
43 running. It is non-interactive because it is processing a script and not
44 waiting for user input between commands. For these shell invocations, only
45 the environment inherited from the parent shell is used.</para>
46
47 <para> The file <filename>~/.bash_logout</filename> is not used for an
48 invocation of the shell. It is read and executed when a user exits from an
49 interactive login shell.</para>
50
[a05dbe6]51 <para>Many distributions use <filename>/etc/bashrc</filename> for system wide
52 initialization of non-login shells. This file is usually called from the
53 user's <filename>~/.bashrc</filename> file and is not built directly into
54 <command>bash</command> itself. This convention is followed in this
55 section.</para>
[2753b70b]56
[384039a]57 <para>For more information see <command>info bash</command> --
[2753b70b]58 <emphasis role="strong">Nodes: Bash Startup Files and Interactive
[ba0deaad]59 Shells</emphasis>.</para>
60
61 <note>
62 <para>Most of the instructions below are used to create files located in
63 the <filename class='directory'>/etc</filename> directory structure which
64 requires you to execute the commands as the
65 <systemitem class='username'>root</systemitem> user. If you elect to create
66 the files in user's home directories instead, you should run the commands
67 as an unprivileged user.</para>
68 </note>
[2753b70b]69
70 <sect2 id="etc-profile-profile">
71 <title>/etc/profile</title>
72
73 <indexterm zone="postlfs-config-profile etc-profile-profile">
74 <primary sortas="e-etc-profile">/etc/profile</primary>
75 </indexterm>
76
77 <para>Here is a base <filename>/etc/profile</filename>. This file starts by
78 setting up some helper functions and some basic parameters. It specifies some
[ba0deaad]79 <command>bash</command> history parameters and, for security purposes,
[384039a]80 disables keeping a permanent history file for the <systemitem
[2753b70b]81 class="username">root</systemitem> user. It also sets a
82 default user prompt. It then calls small, single purpose scripts in the
83 <filename class='directory'>/etc/profile.d</filename> directory to provide most
[ba0deaad]84 of the initialization.</para>
[2753b70b]85
86 <para>For more information on the escape sequences you can use for your prompt
[ba0deaad]87 (i.e., the <envar>PS1</envar> environment variable) see <command>info
[2753b70b]88 bash</command> -- <emphasis role="strong">Node: Printing a
[ba0deaad]89 Prompt</emphasis>.</para>
[2753b70b]90
[8e37798]91<screen role="root"><?dbfo keep-together="auto"?><userinput>cat &gt; /etc/profile &lt;&lt; "EOF"
[2753b70b]92<literal># Begin /etc/profile
[b554263]93# Written for Beyond Linux From Scratch
94# by James Robertson &lt;jameswrobertson@earthlink.net&gt;
[1a396398]95# modifications by Dagmar d'Surreal &lt;rivyqntzne@pbzpnfg.arg&gt;
[384039a]96
[b554263]97# System wide environment variables and startup programs.
[384039a]98
[b554263]99# System wide aliases and functions should go in /etc/bashrc. Personal
100# environment variables and startup programs should go into
101# ~/.bash_profile. Personal aliases and functions should go into
102# ~/.bashrc.
[384039a]103
[1a396398]104# Functions to help us manage paths. Second argument is the name of the
105# path variable to be modified (default: PATH)
106pathremove () {
107 local IFS=':'
108 local NEWPATH
109 local DIR
110 local PATHVARIABLE=${2:-PATH}
111 for DIR in ${!PATHVARIABLE} ; do
112 if [ "$DIR" != "$1" ] ; then
113 NEWPATH=${NEWPATH:+$NEWPATH:}$DIR
114 fi
115 done
116 export $PATHVARIABLE="$NEWPATH"
[b554263]117}
[384039a]118
[1a396398]119pathprepend () {
120 pathremove $1 $2
121 local PATHVARIABLE=${2:-PATH}
122 export $PATHVARIABLE="$1${!PATHVARIABLE:+:${!PATHVARIABLE}}"
123}
[384039a]124
[1a396398]125pathappend () {
126 pathremove $1 $2
127 local PATHVARIABLE=${2:-PATH}
128 export $PATHVARIABLE="${!PATHVARIABLE:+${!PATHVARIABLE}:}$1"
129}
[384039a]130
[e9ef7b5e]131
132# Set the initial path
133export PATH=/bin:/usr/bin
134
[1a396398]135if [ $EUID -eq 0 ] ; then
[e9ef7b5e]136 pathappend /sbin:/usr/sbin
[1a396398]137 unset HISTFILE
[b554263]138fi
[384039a]139
[1a396398]140# Setup some environment variables.
141export HISTSIZE=1000
142export HISTIGNORE="&amp;:[bf]g:exit"
[0d7ec6f1]143
[410e228b]144# Setup a red prompt for root and a green one for users.
[0d7ec6f1]145NORMAL="\[\e[0m\]"
146RED="\[\e[1;31m\]"
147GREEN="\[\e[1;32m\]"
148if [[ $EUID == 0 ]] ; then
149 PS1="$RED\u [ $NORMAL\w$RED ]# $NORMAL"
150else
151 PS1="$GREEN\u [ $NORMAL\w$GREEN ]\$ $NORMAL"
152fi
[384039a]153
[1a396398]154for script in /etc/profile.d/*.sh ; do
[d3880c0]155 if [ -r $script ] ; then
[1a396398]156 . $script
157 fi
158done
[384039a]159
[99e8a229]160# Now to clean up
[384039a]161unset pathremove pathprepend pathappend
[1a396398]162
[2753b70b]163# End /etc/profile</literal>
164EOF</userinput></screen>
[1a396398]165
[2753b70b]166 <sect3 id="etc-profile.d">
167 <title>The /etc/profile.d Directory</title>
[99e8a229]168
[2753b70b]169 <indexterm zone="postlfs-config-profile etc-profile.d">
170 <primary sortas="e-etc-profile.d">/etc/profile.d</primary>
171 </indexterm>
[1a396398]172
[384039a]173 <para>Now create the <filename class='directory'>/etc/profile.d</filename>
[ba0deaad]174 directory, where the individual initialization scripts are placed:</para>
[1a396398]175
[2753b70b]176<screen role="root"><userinput>install --directory --mode=0755 --owner=root --group=root /etc/profile.d</userinput></screen>
[1a396398]177
[2753b70b]178 </sect3>
[1a396398]179
[2753b70b]180 <sect3 id="etc-profile.d-dircolors.sh">
181 <title>/etc/profile.d/dircolors.sh</title>
182
183 <indexterm zone="postlfs-config-profile etc-profile.d-dircolors.sh">
184 <primary sortas="e-etc-profile.d-dircolors.sh">/etc/profile.d/dircolors.sh</primary>
185 </indexterm>
186
187 <para>This script uses the <filename>~/.dircolors</filename> and
188 <filename>/etc/dircolors</filename> files to control the colors of file names in a
189 directory listing. They control colorized output of things like <command>ls
[ba0deaad]190 --color</command>. The explanation of how to initialize these files is at the
[2753b70b]191 end of this section.</para>
192
193<screen role="root"><userinput>cat &gt; /etc/profile.d/dircolors.sh &lt;&lt; "EOF"
194<literal># Setup for /bin/ls to support color, the alias is in /etc/bashrc.
[1a396398]195if [ -f "/etc/dircolors" ] ; then
196 eval $(dircolors -b /etc/dircolors)
[384039a]197
[1a396398]198 if [ -f "$HOME/.dircolors" ] ; then
199 eval $(dircolors -b $HOME/.dircolors)
200 fi
[b554263]201fi
[2753b70b]202alias ls='ls --color=auto'</literal>
203EOF</userinput></screen>
204
205 </sect3>
206
207 <sect3 id="extrapaths.sh">
208 <title>/etc/profile.d/extrapaths.sh</title>
209
210 <indexterm zone="postlfs-config-profile extrapaths.sh">
211 <primary sortas="e-etc-profile.d-extrapaths.sh">/etc/profile.d/extrapaths.sh</primary>
212 </indexterm>
213
214 <para>This script adds several useful paths to the <envar>PATH</envar> and
[384039a]215 <envar>PKG_CONFIG_PATH</envar> environment variables. If you want, you
216 can uncomment the last section to put a dot at the end of your path. This will
217 allow executables in the current working directory to be executed without
[104733c]218 specifying a ./, however you are warned that this is generally considered a
[2753b70b]219 security hazard.</para>
[384039a]220
[2753b70b]221<screen role="root"><userinput>cat &gt; /etc/profile.d/extrapaths.sh &lt;&lt; "EOF"
222<literal>if [ -d /usr/local/lib/pkgconfig ] ; then
[1a396398]223 pathappend /usr/local/lib/pkgconfig PKG_CONFIG_PATH
224fi
225if [ -d /usr/local/bin ]; then
226 pathprepend /usr/local/bin
[b554263]227fi
[1a396398]228if [ -d /usr/local/sbin -a $EUID -eq 0 ]; then
229 pathprepend /usr/local/sbin
230fi
[d56adcc]231
[1a396398]232if [ -d ~/bin ]; then
233 pathprepend ~/bin
234fi
235#if [ $EUID -gt 99 ]; then
236# pathappend .
[2753b70b]237#fi</literal>
238EOF</userinput></screen>
239
240 </sect3>
241
242 <sect3 id="readline.sh">
243 <title>/etc/profile.d/readline.sh</title>
244
245 <indexterm zone="postlfs-config-profile readline.sh">
246 <primary sortas="e-etc-profile.d-readline.sh">/etc/profile.d/readline.sh</primary>
247 </indexterm>
248
[384039a]249 <para>This script sets up the default <filename>inputrc</filename>
250 configuration file. If the user does not have individual settings, it uses the
[2753b70b]251 global file.</para>
252
253<screen role="root"><userinput>cat &gt; /etc/profile.d/readline.sh &lt;&lt; "EOF"
254<literal># Setup the INPUTRC environment variable.
[b554263]255if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ] ; then
[1a396398]256 INPUTRC=/etc/inputrc
[b554263]257fi
[2753b70b]258export INPUTRC</literal>
259EOF</userinput></screen>
260
261 </sect3>
262
263 <sect3 id="umask.sh">
264 <title>/etc/profile.d/umask.sh</title>
265
266 <indexterm zone="postlfs-config-profile umask.sh">
267 <primary sortas="e-etc-profile.d-umask.sh">/etc/profile.d/umask.sh</primary>
268 </indexterm>
[384039a]269
270 <para>Setting the <command>umask</command> value is important for security.
271 Here the default group write permissions are turned off for system users and when
[2753b70b]272 the user name and group name are not the same.</para>
[b554263]273
[2753b70b]274<screen role="root"><userinput>cat &gt; /etc/profile.d/umask.sh &lt;&lt; "EOF"
275<literal># By default we want the umask to get set.
[1a396398]276if [ "$(id -gn)" = "$(id -un)" -a $EUID -gt 99 ] ; then
277 umask 002
278else
279 umask 022
[2753b70b]280fi</literal>
281EOF</userinput></screen>
282
283 </sect3>
284
285 <sect3 id="X.sh">
286 <title>/etc/profile.d/X.sh</title>
[1a396398]287
[2753b70b]288 <indexterm zone="postlfs-config-profile X.sh">
289 <primary sortas="e-etc-profile.d-X.sh">/etc/profile.d/X.sh</primary>
290 </indexterm>
[1a396398]291
[384039a]292 <para>If <application>X</application> is installed, the <envar>PATH</envar>
[2753b70b]293 and <envar>PKG_CONFIG_PATH</envar> variables are also updated.</para>
[1a396398]294
[2753b70b]295<screen role="root"><userinput>cat &gt; /etc/profile.d/X.sh &lt;&lt; "EOF"
296<literal>if [ -x /usr/X11R6/bin/X ]; then
[1a396398]297 pathappend /usr/X11R6/bin
298fi
299if [ -d /usr/X11R6/lib/pkgconfig ] ; then
300 pathappend /usr/X11R6/lib/pkgconfig PKG_CONFIG_PATH
[2753b70b]301fi</literal>
302EOF</userinput></screen>
303
304 </sect3>
305
306 <sect3 id="i18n.sh">
[0d7ec6f1]307 <title>/etc/profile.d/i18n.sh</title>
[2753b70b]308
309 <indexterm zone="postlfs-config-profile i18n.sh">
310 <primary sortas="e-etc-profile.d-i18n.sh">/etc/profile.d/i18n.sh</primary>
311 </indexterm>
312
[0f442884]313 <para>This script sets an environment variable necessary for
314 native language support. A full discussion on determining this
315 variable can be found on the <ulink
316 url="&lfs-root;/chapter07/profile.html">LFS Bash Shell
317 Startup Files</ulink> page.</para>
[2753b70b]318
319<screen role="root"><userinput>cat &gt; /etc/profile.d/i18n.sh &lt;&lt; "EOF"
320<literal># Set up i18n variables
[0f442884]321export LANG=<replaceable>&lt;ll&gt;</replaceable>_<replaceable>&lt;CC&gt;</replaceable>.<replaceable>&lt;charmap&gt;</replaceable><replaceable>&lt;@modifiers&gt;</replaceable></literal>
[2753b70b]322EOF</userinput></screen>
323
324 </sect3>
325
326 <sect3>
327 <title>Other Initialization Values</title>
328
[384039a]329 <para>Other initialization can easily be added to the
330 <filename>profile</filename> by adding additional scripts to the
[2753b70b]331 <filename class='directory'>/etc/profile.d</filename> directory.</para>
332
333 </sect3>
334
335 </sect2>
336
337 <sect2 id="etc-bashrc-profile">
338 <title>/etc/bashrc</title>
339
340 <indexterm zone="postlfs-config-profile etc-bashrc-profile">
341 <primary sortas="e-etc-bashrc">/etc/bashrc</primary>
342 </indexterm>
343
344 <para>Here is a base <filename>/etc/bashrc</filename>. Comments in the
345 file should explain everything you need.</para>
346
347<screen role="root"><userinput>cat &gt; /etc/bashrc &lt;&lt; "EOF"
[384039a]348<literal># Begin /etc/bashrc
349# Written for Beyond Linux From Scratch
[b554263]350# by James Robertson &lt;jameswrobertson@earthlink.net&gt;
[4e88613]351# updated by Bruce Dubbs &lt;bdubbs@&lfs-domainname;&gt;
[ad33bab6]352
[b554263]353# System wide aliases and functions.
354
355# System wide environment variables and startup programs should go into
356# /etc/profile. Personal environment variables and startup programs
357# should go into ~/.bash_profile. Personal aliases and functions should
358# go into ~/.bashrc
359
360# Provides a colored /bin/ls command. Used in conjunction with code in
361# /etc/profile.
[1a396398]362
[b554263]363alias ls='ls --color=auto'
364
[1a396398]365# Provides prompt for non-login shells, specifically shells started
[2753b70b]366# in the X environment. [Review the LFS archive thread titled
[384039a]367# PS1 Environment Variable for a great case study behind this script
[dd362e5]368# addendum.]
[1a396398]369
[0d7ec6f1]370NORMAL="\[\e[0m\]"
371RED="\[\e[1;31m\]"
372GREEN="\[\e[1;32m\]"
373if [[ $EUID == 0 ]] ; then
374 PS1="$RED\u [ $NORMAL\w$RED ]# $NORMAL"
375else
376 PS1="$GREEN\u [ $NORMAL\w$GREEN ]\$ $NORMAL"
377fi
[28a9992]378
[2753b70b]379# End /etc/bashrc</literal>
380EOF</userinput></screen>
381
382 </sect2>
383
384 <sect2 id="bash_profile-profile">
385 <title>~/.bash_profile</title>
386
387 <indexterm zone="postlfs-config-profile bash_profile-profile">
388 <primary sortas="e-AA.bash_profile">~/.bash_profile</primary>
389 </indexterm>
390
391 <para>Here is a base <filename>~/.bash_profile</filename>. If you want each
392 new user to have this file automatically, just change the output of
393 the command to <filename>/etc/skel/.bash_profile</filename> and check the
394 permissions after the command is run. You can then copy
395 <filename>/etc/skel/.bash_profile</filename> to the home directories of already
[384039a]396 existing users, including <systemitem class="username">root</systemitem>,
[2753b70b]397 and set the owner and group appropriately.</para>
398
399<screen><userinput>cat &gt; ~/.bash_profile &lt;&lt; "EOF"
400<literal># Begin ~/.bash_profile
[b554263]401# Written for Beyond Linux From Scratch
402# by James Robertson &lt;jameswrobertson@earthlink.net&gt;
[4e88613]403# updated by Bruce Dubbs &lt;bdubbs@&lfs-domainname;&gt;
[b554263]404
[64d97b7c]405# Personal environment variables and startup programs.
[b554263]406
407# Personal aliases and functions should go in ~/.bashrc. System wide
408# environment variables and startup programs are in /etc/profile.
409# System wide aliases and functions are in /etc/bashrc.
410
[1a396398]411append () {
412 # First remove the directory
413 local IFS=':'
414 local NEWPATH
415 for DIR in $PATH; do
416 if [ "$DIR" != "$1" ]; then
[3f1b51a]417 NEWPATH=${NEWPATH:+$NEWPATH:}$DIR
[384039a]418 fi
[1a396398]419 done
[384039a]420
[1a396398]421 # Then append the directory
422 export PATH=$NEWPATH:$1
423}
424
[b554263]425if [ -f "$HOME/.bashrc" ] ; then
[76d61ba]426 source $HOME/.bashrc
[b554263]427fi
428
429if [ -d "$HOME/bin" ] ; then
[384039a]430 append $HOME/bin
[b554263]431fi
432
[1a396398]433unset append
[b554263]434
[2753b70b]435# End ~/.bash_profile</literal>
436EOF</userinput></screen>
437
438 </sect2>
[384039a]439
[2753b70b]440 <sect2 id="bashrc-profile">
441 <title>~/.bashrc</title>
442
443 <indexterm zone="postlfs-config-profile bashrc-profile">
444 <primary sortas="e-AA.bashrc">~/.bashrc</primary>
445 </indexterm>
446
447 <para>Here is a base <filename>~/.bashrc</filename>. The comments and
448 instructions for using <filename class="directory">/etc/skel</filename> for
449 <filename>.bash_profile</filename> above also apply here. Only the target file
450 names are different.</para>
451
452<screen><userinput>cat &gt; ~/.bashrc &lt;&lt; "EOF"
453<literal># Begin ~/.bashrc
[b554263]454# Written for Beyond Linux From Scratch
455# by James Robertson &lt;jameswrobertson@earthlink.net&gt;
456
457# Personal aliases and functions.
458
459# Personal environment variables and startup programs should go in
[64d97b7c]460# ~/.bash_profile. System wide environment variables and startup
[b554263]461# programs are in /etc/profile. System wide aliases and functions are
[384039a]462# in /etc/bashrc.
[b554263]463
464if [ -f "/etc/bashrc" ] ; then
[76d61ba]465 source /etc/bashrc
[b554263]466fi
467
[2753b70b]468# End ~/.bashrc</literal>
469EOF</userinput></screen>
470
471 </sect2>
[384039a]472
473
[2753b70b]474 <sect2 id="bash_logout-profile">
475 <title>~/.bash_logout</title>
476
477 <indexterm zone="postlfs-config-profile bash_logout-profile">
478 <primary sortas="e-AA.bash_logout">~/.bash_logout</primary>
479 </indexterm>
480
481 <para>This is an empty <filename>~/.bash_logout</filename> that can be used as
482 a template. You will notice that the base <filename>~/.bash_logout</filename>
483 does not include a <userinput>clear</userinput> command. This is because the
484 clear is handled in the <filename>/etc/issue</filename> file.</para>
485
486<screen><userinput>cat &gt; ~/.bash_logout &lt;&lt; "EOF"
487<literal># Begin ~/.bash_logout
[b554263]488# Written for Beyond Linux From Scratch
489# by James Robertson &lt;jameswrobertson@earthlink.net&gt;
490
491# Personal items to perform on logout.
492
[2753b70b]493# End ~/.bash_logout</literal>
494EOF</userinput></screen>
495
496 </sect2>
[384039a]497
498
[2753b70b]499 <sect2 id="etc-dircolors-profile">
500 <title>/etc/dircolors</title>
501
502 <indexterm zone="postlfs-config-profile etc-dircolors-profile">
503 <primary sortas="e-etc-dircolors">/etc/dircolors</primary>
504 </indexterm>
505
506 <indexterm zone="postlfs-config-profile etc-dircolors-profile">
507 <primary sortas="e-AA.dircolors">~/.dircolors</primary>
508 </indexterm>
509
510 <para> If you want to use the <filename>dircolors</filename> capability, then
511 run the following command. The <filename class="directory">/etc/skel</filename>
[ba0deaad]512 setup steps shown above also can be used here to provide a
[384039a]513 <filename>~/.dircolors</filename> file when a new user is set up. As before,
[2753b70b]514 just change the output file name on the following command and assure the
[384039a]515 permissions, owner, and group are correct on the files created and/or
[2753b70b]516 copied.</para>
517
518<screen role="root"><userinput>dircolors -p > /etc/dircolors</userinput></screen>
519
520 <para>If you wish to customize the colors used for different file types, you can
[384039a]521 edit the <filename>/etc/dircolors</filename> file. The instructions for setting
[2753b70b]522 the colors are embedded in the file.</para>
523
524
525 <para>Finally, Ian Macdonald has written an excellent collection of tips and
526 tricks to enhance your shell environment. You can read it online at
[ba0deaad]527 <ulink url="http://www.caliban.org/bash/index.shtml"/>.</para>
[2753b70b]528
529 </sect2>
530
[b554263]531</sect1>
Note: See TracBrowser for help on using the repository browser.