mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-10-31 07:51:08 +03:00
4d803d8d04
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.
35 lines
1.0 KiB
Plaintext
35 lines
1.0 KiB
Plaintext
# udev.conf
|
|
# The main config file for udev
|
|
#
|
|
# This file can be used to override some of udev's default values
|
|
# for where it looks for files, and where it places device nodes.
|
|
|
|
|
|
# udev_root - where in the filesystem to place the device nodes
|
|
udev_root="@udevdir@/"
|
|
|
|
# udev_db - The name and location of the udev database.
|
|
udev_db="@udevdir@/.udev.tdb"
|
|
|
|
# udev_rules - The name and location of the udev rules file
|
|
udev_rules="/etc/udev/udev.rules"
|
|
|
|
# udev_permissions - The name and location of the udev permission file
|
|
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="0600"
|
|
|
|
# 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"
|
|
|
|
# udev_log - set to "yes" if you want logging, else "no"
|
|
udev_log="yes"
|
|
|