diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2004-01-19 19:44:24 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:13:17 -0700 |
commit | 765cbd97599d943adc73d03f4c91bd7cf7ef7fab (patch) | |
tree | b6ce2967912c4bbcffeefec4e334d65c9abb5da9 /udev.8 | |
parent | 74c73ef994f3ea8d013c33fe7be73e0c0c86977b (diff) |
[PATCH] set default owner/group in db - update
I've edited the man page today, so this is alreay included :)
Also a few more trivials:
o added the defaults to udev.conf.in
o removed class_dev from get_default_mode(), to match with Hanna's
o changed size of mode_str to MODE_SIZE
o changed a few char compares from from 0x00 to '\0'
Diffstat (limited to 'udev.8')
-rw-r--r-- | udev.8 | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -98,6 +98,16 @@ This is the location of the udev permission file. The default value for this is This is the default mode for all nodes that have no explicit match in the permissions file. The default value for this is .I 0666 +.TP +.B default_owner +This is the default owner for all nodes that have no explicit match in the +permissions file. The default value for this is +.I root +.TP +.B default_group +This is the default group for all nodes that have no explicit match in the +permissions file. The default value for this is +.I root .br .P .RI "A sample " udev.conf " might look like this: @@ -118,6 +128,14 @@ udev_permissions="/etc/udev/udev.permissions" # default_mode - set the default mode for all nodes that have no # explicit match in the permissions file default_mode="0666" + +# default_owner - set the default owner for all nodes that have no +# explicit match in the permissions file +default_owner="root" + +# default_group - set the default group for all nodes that have no +# explicit match in the permissions file +default_group="root" .fi .P The rules for udev to use when naming devices may specified at |