diff options
author | azarah@nosferatu.za.org <azarah@nosferatu.za.org> | 2004-02-11 19:42:51 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:32:26 -0700 |
commit | 4d803d8d04a8493f8efc039c7789c65be33048a0 (patch) | |
tree | 5e349c87952f1dba4469095b7337830dcb3dd265 /etc/udev | |
parent | da92f46b9e86643e70861bb705453f81aef5618d (diff) |
[PATCH] make logging a config option
Once again, patch to make logging a config option.
Reason for this (since you asked for it):
- In our setup it is easy (although still annoying) .. just edit the
ebuild, add logging support (or remove it) and rebuild. For say a
binary distro, having the logging is useful for debugging some
times, but its more a once of, or rare thing, as you do not add or
change config files every day. Sure, we can have logging by
default, but many do not want ~300 lines of extra debugging in their
logs is not pleasant, and they will complain. Rebuilding the
package for that binary package (given the users it is targeted to)
is usually not within most users grasp.
Diffstat (limited to 'etc/udev')
-rw-r--r-- | etc/udev/udev.conf.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/etc/udev/udev.conf.in b/etc/udev/udev.conf.in index f9a60ab3c8..3e73bedbf5 100644 --- a/etc/udev/udev.conf.in +++ b/etc/udev/udev.conf.in @@ -29,3 +29,6 @@ default_owner="root" # explicit match in the permissions file default_group="root" +# udev_log - set to "yes" if you want logging, else "no" +udev_log="yes" + |