chiark / gitweb /
udev: replace ARRAY_SIZE() with ELEMENTSOF()
[elogind.git] / man / udev.xml
1 <?xml version='1.0'?>
2 <?xml-stylesheet type="text/xsl" href="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl"?>
3 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
4   "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
5
6 <refentry id="udev">
7   <refentryinfo>
8     <title>udev</title>
9     <productname>systemd</productname>
10     <authorgroup>
11       <author>
12         <contrib>Developer</contrib>
13         <firstname>Greg</firstname>
14         <surname>Kroah-Hartmann</surname>
15         <email>greg@kroah.com</email>
16       </author>
17       <author>
18         <contrib>Developer</contrib>
19         <firstname>Kay</firstname>
20         <surname>Sievers</surname>
21         <email>kay@vrfy.org</email>
22       </author>
23     </authorgroup>
24   </refentryinfo>
25
26   <refmeta>
27     <refentrytitle>udev</refentrytitle>
28     <manvolnum>7</manvolnum>
29   </refmeta>
30
31   <refnamediv>
32     <refname>udev</refname>
33     <refpurpose>Linux dynamic device management</refpurpose>
34   </refnamediv>
35
36   <refsect1><title>Description</title>
37     <para>udev supplies the system software with device events, manages permissions
38     of device nodes and may create additional symlinks in the <filename>/dev</filename>
39     directory, or renames network interfaces. The kernel usually just assigns unpredictable
40     device names based on the order of discovery. Meaningful symlinks or network device
41     names provide a way to reliably identify devices based on their properties or
42     current configuration.</para>
43
44     <para>The udev daemon, <citerefentry><refentrytitle>udevd</refentrytitle>
45     <manvolnum>8</manvolnum></citerefentry>, receives device uevents directly from
46     the kernel whenever a device is added or removed from the system, or it changes its
47     state. When udev receives a device event, it matches its configured set of rules
48     against various device attributes to identify the device. Rules that match may
49     provide additional device information to be stored in the udev database or
50     to be used to create meaningful symlink names.</para>
51
52     <para>All device information udev processes is stored in the udev database and
53     sent out to possible event subscribers. Access to all stored data and the event
54     sources is provided by the library libudev.</para>
55   </refsect1>
56
57   <refsect1><title>Configuration</title>
58     <para>udev configuration files are placed in <filename>/etc/udev</filename>
59     and <filename>/usr/lib/udev</filename>. All empty lines or lines beginning with
60     '#' are ignored.</para>
61
62     <refsect2><title>Configuration file</title>
63       <para>udev expects its main configuration file at <filename>/etc/udev/udev.conf</filename>.
64       It consists of a set of variables allowing the user to override default udev values.
65       The following variables can be set:</para>
66       <variablelist>
67         <varlistentry>
68           <term><option>udev_root</option></term>
69           <listitem>
70             <para>Specifies where to place the device nodes in the filesystem.
71             The default value is <filename>/dev</filename>.</para>
72           </listitem>
73         </varlistentry>
74
75         <varlistentry>
76           <term><option>udev_log</option></term>
77           <listitem>
78             <para>The logging priority. Valid values are the numerical syslog priorities
79             or their textual representations: <option>err</option>, <option>info</option>
80             and <option>debug</option>.</para>
81           </listitem>
82         </varlistentry>
83       </variablelist>
84     </refsect2>
85
86     <refsect2><title>Rules files</title>
87       <para>The udev rules are read from the files located in the
88       system rules directory <filename>/usr/lib/udev/rules.d</filename>,
89       the volatile runtime directory <filename>/run/udev/rules.d</filename>
90       and the local administration directory <filename>/etc/udev/rules.d</filename>.
91       All rules files are collectively sorted and processed in lexical order,
92       regardless of the directories in which they live. However, files with
93       identical file names replace each other. Files in <filename>/etc</filename>
94       have the highest priority, files in <filename>/run</filename> take precedence
95       over files with the same name in <filename>/lib</filename>. This can be
96       used to override a system-supplied rules file with a local file if needed;
97       a symlink in <filename>/etc</filename> with the same name as a rules file in
98       <filename>/lib</filename>, pointing to <filename>/dev/null</filename>,
99       disables the rules file entirely.</para>
100
101       <para>Rule files must have the extension <filename>.rules</filename>; other
102       extensions are ignored.</para>
103
104       <para>Every line in the rules file contains at least one key-value pair.
105       There are two kind of keys: match and assignment.
106       If all match keys are matching against its value, the rule gets applied and the
107       assignment keys get the specified value assigned.</para>
108
109       <para>A matching rule may rename a network interface, add symlinks
110       pointing to the device node, or run a specified program as part of
111       the event handling.</para>
112
113       <para>A rule consists of a comma-separated list of one or more key-value pairs.
114       Each key has a distinct operation, depending on the used operator. Valid
115       operators are:</para>
116       <variablelist>
117         <varlistentry>
118           <term><option>==</option></term>
119           <listitem>
120             <para>Compare for equality.</para>
121           </listitem>
122         </varlistentry>
123
124         <varlistentry>
125           <term><option>!=</option></term>
126           <listitem>
127             <para>Compare for inequality.</para>
128           </listitem>
129         </varlistentry>
130
131         <varlistentry>
132           <term><option>=</option></term>
133           <listitem>
134             <para>Assign a value to a key. Keys that represent a list are reset
135             and only this single value is assigned.</para>
136           </listitem>
137         </varlistentry>
138
139         <varlistentry>
140           <term><option>+=</option></term>
141           <listitem>
142             <para>Add the value to a key that holds a list of entries.</para>
143           </listitem>
144         </varlistentry>
145
146         <varlistentry>
147           <term><option>:=</option></term>
148           <listitem>
149             <para>Assign  a  value  to  a key finally; disallow any later changes.</para>
150           </listitem>
151         </varlistentry>
152       </variablelist>
153
154       <para>The following key names can be used to match against device properties.
155       Some of the keys also match against properties of the parent devices in sysfs,
156       not only the device that has generated the event. If multiple keys that match
157       a parent device are specified in a single rule, all these keys must match at
158       one and the same parent device.</para>
159       <variablelist>
160         <varlistentry>
161           <term><option>ACTION</option></term>
162           <listitem>
163             <para>Match the name of the event action.</para>
164           </listitem>
165         </varlistentry>
166
167         <varlistentry>
168           <term><option>DEVPATH</option></term>
169           <listitem>
170             <para>Match the devpath of the event device.</para>
171           </listitem>
172         </varlistentry>
173
174         <varlistentry>
175           <term><option>KERNEL</option></term>
176           <listitem>
177             <para>Match the name of the event device.</para>
178           </listitem>
179         </varlistentry>
180
181         <varlistentry>
182           <term><option>NAME</option></term>
183           <listitem>
184             <para>Match the name of a network interface. It can be used once the
185             NAME key has been set in one of the preceding rules.</para>
186           </listitem>
187         </varlistentry>
188
189         <varlistentry>
190           <term><option>SYMLINK</option></term>
191           <listitem>
192             <para>Match the name of a symlink targeting the node. It can
193             be used once a SYMLINK key has been set in one of the preceding
194             rules. There may be multiple symlinks; only one needs to match.
195             </para>
196           </listitem>
197         </varlistentry>
198
199         <varlistentry>
200           <term><option>SUBSYSTEM</option></term>
201           <listitem>
202             <para>Match the subsystem of the event device.</para>
203           </listitem>
204         </varlistentry>
205         <varlistentry>
206           <term><option>DRIVER</option></term>
207           <listitem>
208             <para>Match the driver name of the event device. Only set this key for devices
209             which are bound to a driver at the time the event is generated.</para>
210           </listitem>
211         </varlistentry>
212         <varlistentry>
213           <term><option>ATTR{<replaceable>filename</replaceable>}</option></term>
214           <listitem>
215             <para>Match sysfs attribute values of the event device. Trailing
216             whitespace in the attribute values is ignored unless the specified match
217             value itself contains trailing whitespace.
218             </para>
219           </listitem>
220         </varlistentry>
221
222         <varlistentry>
223           <term><option>KERNELS</option></term>
224           <listitem>
225             <para>Search the devpath upwards for a matching device name.</para>
226           </listitem>
227         </varlistentry>
228
229         <varlistentry>
230           <term><option>SUBSYSTEMS</option></term>
231           <listitem>
232             <para>Search the devpath upwards for a matching device subsystem name.</para>
233           </listitem>
234         </varlistentry>
235
236         <varlistentry>
237           <term><option>DRIVERS</option></term>
238           <listitem>
239             <para>Search the devpath upwards for a matching device driver name.</para>
240           </listitem>
241         </varlistentry>
242
243         <varlistentry>
244           <term><option>ATTRS{<replaceable>filename</replaceable>}</option></term>
245           <listitem>
246             <para>Search the devpath upwards for a device with matching sysfs attribute values.
247             If multiple <option>ATTRS</option> matches are specified, all of them
248             must match on the same device. Trailing whitespace in the attribute values is ignored
249             unless the specified match value itself contains trailing whitespace.</para>
250           </listitem>
251         </varlistentry>
252
253         <varlistentry>
254           <term><option>TAGS</option></term>
255           <listitem>
256             <para>Search the devpath upwards for a device with matching tag.</para>
257           </listitem>
258         </varlistentry>
259
260         <varlistentry>
261           <term><option>ENV{<replaceable>key</replaceable>}</option></term>
262           <listitem>
263             <para>Match against a device property value.</para>
264           </listitem>
265         </varlistentry>
266
267         <varlistentry>
268           <term><option>TAG</option></term>
269           <listitem>
270             <para>Match against a device tag.</para>
271           </listitem>
272         </varlistentry>
273
274         <varlistentry>
275           <term><option>TEST{<replaceable>octal mode mask</replaceable>}</option></term>
276           <listitem>
277             <para>Test the existence of a file. An octal mode mask can be specified
278             if needed.</para>
279           </listitem>
280         </varlistentry>
281
282         <varlistentry>
283           <term><option>PROGRAM</option></term>
284           <listitem>
285             <para>Execute a program to determine whether there
286             is a match; the key is true if the program returns
287             successfully. The device properties are made available to the
288             executed program in the environment. The program's stdout
289             is available in the RESULT key.</para>
290             <para>This can only be used for very short-running foreground tasks. For details
291             see <option>RUN</option>.</para>
292           </listitem>
293         </varlistentry>
294
295         <varlistentry>
296           <term><option>RESULT</option></term>
297           <listitem>
298             <para>Match the returned string of the last PROGRAM call. This key can
299             be used in the same or in any later rule after a PROGRAM call.</para>
300           </listitem>
301         </varlistentry>
302       </variablelist>
303
304       <para>Most of the fields support shell-style pattern matching. The following
305       pattern characters are supported:</para>
306       <variablelist>
307         <varlistentry>
308           <term><option>*</option></term>
309           <listitem>
310             <para>Matches zero or more characters.</para>
311           </listitem>
312         </varlistentry>
313         <varlistentry>
314           <term><option>?</option></term>
315           <listitem>
316             <para>Matches any single character.</para>
317           </listitem>
318         </varlistentry>
319         <varlistentry>
320           <term><option>[]</option></term>
321           <listitem>
322             <para>Matches any single character specified within the brackets. For
323             example, the pattern string 'tty[SR]' would match either 'ttyS' or 'ttyR'.
324             Ranges are also supported via the '-' character.
325             For example, to match on the range of all digits, the pattern [0-9] could
326             be used. If the first character following the '[' is a '!', any characters
327             not enclosed are matched.</para>
328           </listitem>
329         </varlistentry>
330       </variablelist>
331
332       <para>The following keys can get values assigned:</para>
333       <variablelist>
334         <varlistentry>
335           <term><option>NAME</option></term>
336           <listitem>
337             <para>The name to use for a network interface. The name of a device node
338             can not be changed by udev, only additional symlinks can be created.</para>
339           </listitem>
340         </varlistentry>
341
342         <varlistentry>
343           <term><option>SYMLINK</option></term>
344           <listitem>
345             <para>The name of a symlink targeting the node. Every matching rule adds
346             this value to the list of symlinks to be created. Multiple symlinks may be
347             specified by separating the names by the space character. In case multiple
348             devices claim the same name, the link always points to the device with
349             the highest link_priority. If the current device goes away, the links are
350             re-evaluated and the device with the next highest link_priority becomes the owner of
351             the link. If no link_priority is specified, the order of the devices (and
352             which one of them owns the link) is undefined. Also, symlink names must
353             never conflict with the kernel's default device node names, as that would
354             result in unpredictable behavior.
355             </para>
356           </listitem>
357         </varlistentry>
358
359         <varlistentry>
360           <term><option>OWNER, GROUP, MODE</option></term>
361           <listitem>
362             <para>The permissions for the device node. Every specified value overrides
363             the compiled-in default value.</para>
364           </listitem>
365         </varlistentry>
366
367         <varlistentry>
368           <term><option>ATTR{<replaceable>key</replaceable>}</option></term>
369           <listitem>
370             <para>The value that should be written to a sysfs attribute of the
371             event device.</para>
372           </listitem>
373         </varlistentry>
374
375         <varlistentry>
376           <term><option>ENV{<replaceable>key</replaceable>}</option></term>
377           <listitem>
378             <para>Set a device property value. Property names with a leading '.'
379             are neither stored in the database nor exported to events or
380             external tools (run by, say, the PROGRAM match key).</para>
381           </listitem>
382         </varlistentry>
383
384         <varlistentry>
385           <term><option>TAG</option></term>
386           <listitem>
387             <para>Attach a tag to a device. This is used to filter events for users
388             of libudev's monitor functionality, or to enumerate a group of tagged
389             devices. The implementation can only work efficiently if only a few
390             tags are attached to a device. It is only meant to be used in
391             contexts with specific device filter requirements, and not as a
392             general-purpose flag. Excessive use might result in inefficient event
393             handling.</para>
394           </listitem>
395         </varlistentry>
396
397         <varlistentry>
398           <term><option>RUN</option></term>
399           <listitem>
400             <para>Add a program to the list of programs to be executed for a specific
401             device.</para>
402             <para>If no absolute path is given, the program is expected to live in
403             /usr/lib/udev, otherwise the absolute path must be specified. The program
404             name and following arguments are separated by spaces. Single quotes can
405             be used to specify arguments with spaces.</para>
406             <para>This can only be used for very short-running foreground tasks. Running an
407             event process for a long period of time may block all further events for
408             this or a dependent device.</para>
409             <para>Starting daemons or other long running processes is not appropriate
410             for udev; the forked processes, detached or not, will be unconditionally
411             killed after the event handling has finished.</para>
412           </listitem>
413         </varlistentry>
414
415         <varlistentry>
416           <term><option>LABEL</option></term>
417           <listitem>
418             <para>A named label to which a GOTO may jump.</para>
419           </listitem>
420         </varlistentry>
421
422         <varlistentry>
423           <term><option>GOTO</option></term>
424           <listitem>
425             <para>Jumps to the next LABEL with a matching name.</para>
426           </listitem>
427         </varlistentry>
428
429         <varlistentry>
430           <term><option>IMPORT{<replaceable>type</replaceable>}</option></term>
431           <listitem>
432             <para>Import a set of variables as device properties,
433             depending on <replaceable>type</replaceable>:</para>
434             <variablelist>
435               <varlistentry>
436                 <term><option>program</option></term>
437                 <listitem>
438                   <para>Execute an external program specified as the assigned value and
439                   import its output, which must be in environment key
440                   format. Path specification, command/argument separation,
441                   and quoting work like in <option>RUN</option>.</para>
442                 </listitem>
443               </varlistentry>
444               <varlistentry>
445                 <term><option>file</option></term>
446                 <listitem>
447                   <para>Import a text file specified as the assigned value, the content
448                   of which must be in environment key format.</para>
449                 </listitem>
450               </varlistentry>
451               <varlistentry>
452                 <term><option>db</option></term>
453                 <listitem>
454                   <para>Import a single property specified as the assigned value from the
455                   current device database. This works only if the database is already populated
456                   by an earlier event.</para>
457                 </listitem>
458               </varlistentry>
459               <varlistentry>
460                 <term><option>cmdline</option></term>
461                 <listitem>
462                   <para>Import a single property from the kernel command line. For simple flags
463                   the value of the property is set to '1'.</para>
464                 </listitem>
465               </varlistentry>
466               <varlistentry>
467                 <term><option>parent</option></term>
468                 <listitem>
469                   <para>Import the stored keys from the parent device by reading
470                   the database entry of the parent device. The value assigned to
471                   <option>IMPORT{parent}</option> is used as a filter of key names
472                   to import (with the same shell-style pattern matching used for
473                   comparisons).</para>
474                 </listitem>
475               </varlistentry>
476             </variablelist>
477             <para>This can only be used for very short-running foreground tasks. For details
478             see <option>RUN</option>.</para>
479           </listitem>
480         </varlistentry>
481
482         <varlistentry>
483           <term><option>WAIT_FOR</option></term>
484           <listitem>
485             <para>Wait for a file to become available or until a timeout of
486             10 seconds expires. The path is relative to the sysfs device;
487             if no path is specified, this waits for an attribute to appear.</para>
488           </listitem>
489         </varlistentry>
490
491         <varlistentry>
492           <term><option>OPTIONS</option></term>
493           <listitem>
494             <para>Rule and device options:</para>
495             <variablelist>
496               <varlistentry>
497                 <term><option>link_priority=<replaceable>value</replaceable></option></term>
498                 <listitem>
499                   <para>Specify the priority of the created symlinks. Devices with higher
500                   priorities overwrite existing symlinks of other devices. The default is 0.</para>
501                 </listitem>
502               </varlistentry>
503               <varlistentry>
504                 <term><option>event_timeout=</option></term>
505                 <listitem>
506                   <para>Number of seconds an event waits for operations to finish before
507                   giving up and terminating itself.</para>
508                 </listitem>
509               </varlistentry>
510               <varlistentry>
511                 <term><option>string_escape=<replaceable>none|replace</replaceable></option></term>
512                 <listitem>
513                   <para>Usually control and other possibly unsafe characters are replaced
514                   in strings used for device naming. The mode of replacement can be specified
515                   with this option.</para>
516                 </listitem>
517               </varlistentry>
518               <varlistentry>
519                 <term><option>static_node=</option></term>
520                 <listitem>
521                   <para>Apply the permissions specified in this rule to the static device node with
522                   the specified name. Static device node creation can be requested by kernel modules.
523                   These nodes might not have a corresponding kernel device at the time udevd is
524                   started; they can trigger automatic kernel module loading.</para>
525                 </listitem>
526               </varlistentry>
527               <varlistentry>
528                 <term><option>watch</option></term>
529                 <listitem>
530                   <para>Watch the device node with inotify; when the node is closed after being opened for
531                   writing, a change uevent is synthesized.</para>
532                 </listitem>
533               </varlistentry>
534               <varlistentry>
535                 <term><option>nowatch</option></term>
536                 <listitem>
537                   <para>Disable the watching of a device node with inotify.</para>
538                 </listitem>
539               </varlistentry>
540             </variablelist>
541           </listitem>
542         </varlistentry>
543       </variablelist>
544
545       <para>The <option>NAME</option>, <option>SYMLINK</option>, <option>PROGRAM</option>,
546       <option>OWNER</option>, <option>GROUP</option>, <option>MODE</option>  and  <option>RUN</option>
547       fields support simple string substitutions. The <option>RUN</option>
548       substitutions are performed after all rules have been processed, right before the program
549       is executed, allowing for the use of device properties set by earlier matching
550       rules. For all other fields, substitutions are performed while the individual rule is
551       being processed. The available substitutions are:</para>
552       <variablelist>
553         <varlistentry>
554           <term><option>$kernel</option>, <option>%k</option></term>
555           <listitem>
556             <para>The kernel name for this device.</para>
557           </listitem>
558         </varlistentry>
559
560         <varlistentry>
561           <term><option>$number</option>, <option>%n</option></term>
562           <listitem>
563             <para>The kernel number for this device. For example, 'sda3' has
564             kernel number of '3'</para>
565           </listitem>
566         </varlistentry>
567
568         <varlistentry>
569           <term><option>$devpath</option>, <option>%p</option></term>
570           <listitem>
571             <para>The devpath of the device.</para>
572           </listitem>
573         </varlistentry>
574
575         <varlistentry>
576           <term><option>$id</option>, <option>%b</option></term>
577           <listitem>
578             <para>The name of the device matched while searching the devpath upwards for
579               <option>SUBSYSTEMS</option>, <option>KERNELS</option>, <option>DRIVERS</option> and <option>ATTRS</option>.
580             </para>
581           </listitem>
582         </varlistentry>
583
584         <varlistentry>
585           <term><option>$driver</option></term>
586           <listitem>
587             <para>The driver name of the device matched while searching the devpath upwards for
588               <option>SUBSYSTEMS</option>, <option>KERNELS</option>, <option>DRIVERS</option> and <option>ATTRS</option>.
589             </para>
590           </listitem>
591         </varlistentry>
592
593         <varlistentry>
594           <term><option>$attr{<replaceable>file</replaceable>}</option>, <option>%s{<replaceable>file</replaceable>}</option></term>
595           <listitem>
596             <para>The value of a sysfs attribute found at the device where
597             all keys of the rule have matched. If the matching device does not have
598             such an attribute, and a previous KERNELS, SUBSYSTEMS, DRIVERS, or
599             ATTRS test selected a parent device, then the attribute from that
600             parent device is used.</para>
601             <para>If the attribute is a symlink, the last element of the symlink target is
602             returned as the value.</para>
603           </listitem>
604         </varlistentry>
605
606         <varlistentry>
607           <term><option>$env{<replaceable>key</replaceable>}</option>, <option>%E{<replaceable>key</replaceable>}</option></term>
608           <listitem>
609             <para>A device property value.</para>
610           </listitem>
611         </varlistentry>
612
613         <varlistentry>
614           <term><option>$major</option>, <option>%M</option></term>
615           <listitem>
616             <para>The kernel major number for the device.</para>
617           </listitem>
618         </varlistentry>
619
620         <varlistentry>
621           <term><option>$minor</option>, <option>%m</option></term>
622           <listitem>
623             <para>The kernel minor number for the device.</para>
624           </listitem>
625         </varlistentry>
626
627         <varlistentry>
628           <term><option>$result</option>, <option>%c</option></term>
629           <listitem>
630             <para>The string returned by the external program requested with PROGRAM.
631             A single part of the string, separated by a space character, may be selected
632             by specifying the part number as an attribute: <option>%c{N}</option>.
633             If the number is followed by the '+' character, this part plus all remaining parts
634             of the result string are substituted: <option>%c{N+}</option></para>
635           </listitem>
636         </varlistentry>
637
638         <varlistentry>
639           <term><option>$parent</option>, <option>%P</option></term>
640           <listitem>
641             <para>The node name of the parent device.</para>
642           </listitem>
643         </varlistentry>
644
645         <varlistentry>
646           <term><option>$name</option></term>
647           <listitem>
648             <para>The current name of the device. If not changed by a rule, it is the
649             name of the kernel device.</para>
650           </listitem>
651         </varlistentry>
652
653         <varlistentry>
654           <term><option>$links</option></term>
655           <listitem>
656             <para>A space-separated list of the current symlinks. The value is
657             only set during a remove event or if an earlier rule assigned a value.</para>
658           </listitem>
659         </varlistentry>
660
661         <varlistentry>
662           <term><option>$root</option>, <option>%r</option></term>
663           <listitem>
664             <para>The udev_root value.</para>
665           </listitem>
666         </varlistentry>
667
668         <varlistentry>
669           <term><option>$sys</option>, <option>%S</option></term>
670           <listitem>
671             <para>The sysfs mount point.</para>
672           </listitem>
673         </varlistentry>
674
675         <varlistentry>
676           <term><option>$devnode</option>, <option>%N</option></term>
677           <listitem>
678             <para>The name of the device node.</para>
679           </listitem>
680         </varlistentry>
681
682         <varlistentry>
683           <term><option>%%</option></term>
684           <listitem>
685           <para>The '%' character itself.</para>
686           </listitem>
687         </varlistentry>
688
689         <varlistentry>
690           <term><option>$$</option></term>
691           <listitem>
692           <para>The '$' character itself.</para>
693           </listitem>
694         </varlistentry>
695       </variablelist>
696     </refsect2>
697   </refsect1>
698
699   <refsect1>
700     <title>See Also</title>
701     <para><citerefentry>
702         <refentrytitle>udevd</refentrytitle><manvolnum>8</manvolnum>
703       </citerefentry>,
704       <citerefentry>
705         <refentrytitle>udevadm</refentrytitle><manvolnum>8</manvolnum>
706     </citerefentry></para>
707   </refsect1>
708 </refentry>