summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2005-07-14 11:43:05 +0200
committerKay Sievers <kay.sievers@suse.de>2005-07-14 11:43:05 +0200
commit7fe082a8a42baa45ef45d82edde4f893410ebeea (patch)
tree52fb232f76b92c1547214753ebbbb86b336e6ce6 /docs
parent8cf97fb046ddcfaea48ab6182b0f69996158d280 (diff)
correct default mode documentation in udev
Diffstat (limited to 'docs')
-rw-r--r--docs/writing_udev_rules/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/writing_udev_rules/index.html b/docs/writing_udev_rules/index.html
index 1ba43678c0..c2ccdc3663 100644
--- a/docs/writing_udev_rules/index.html
+++ b/docs/writing_udev_rules/index.html
@@ -321,7 +321,7 @@ Building on the style mentioned above, you can do even more flashy things. The u
This prevents the need to excessively provide a <i>GROUP="audio"</i> key on every following rule which names sound devices.<br /><br />
-udev defaults to creating nodes with unix permissions of 0660 (read/write to owner and group), which is configured by the <b>default_mode</b> setting inside <i>/etc/udev/udev.conf</i>. There may be some situations where you do not want to use the default permissions on your device node. Fortunately, you can easily override the permissions in your rules using the <i>MODE</i> assignment key. As an example, the following rule defines that the inotify node shall be readable and writable to everyone:
+udev defaults to creating nodes with unix permissions of 0660 (read/write to owner and group). There may be some situations where you do not want to use the default permissions on your device node. Fortunately, you can easily override the permissions in your rules using the <i>MODE</i> assignment key. As an example, the following rule defines that the inotify node shall be readable and writable to everyone:
<blockquote><pre>KERNEL="inotify", NAME="misc/%k", SYMLINK="%k", MODE="0666"</pre></blockquote>