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