From 282988c4f8a85c28468e6442e86efe51dc71cc93 Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Fri, 18 Jul 2008 15:56:03 +0200 Subject: move default rules from /etc/udev/rules.d/ to /lib/udev/rules.d/ None of these rules is supposed to be changed by users, so move them out of /etc. Custom rules, and automatically generated rules stay in /etc. All rules are still processed in lexical order, regardless which directory they live in. --- rules/debian/95-late.rules | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 rules/debian/95-late.rules (limited to 'rules/debian/95-late.rules') diff --git a/rules/debian/95-late.rules b/rules/debian/95-late.rules new file mode 100644 index 0000000000..622e019ef3 --- /dev/null +++ b/rules/debian/95-late.rules @@ -0,0 +1,18 @@ +# run a command on remove events +ACTION=="remove", ENV{REMOVE_CMD}!="", RUN+="$env{REMOVE_CMD}" + +# ignore the events generated by virtual consoles +KERNEL=="ptmx", OPTIONS+="last_rule" +KERNEL=="console", OPTIONS+="last_rule" +KERNEL=="tty" , OPTIONS+="last_rule" +KERNEL=="tty[0-9]*", OPTIONS+="last_rule" +KERNEL=="pty*", OPTIONS+="last_rule" +SUBSYSTEM=="vc", OPTIONS+="last_rule" + +# do not delete static device nodes +ACTION=="remove", NAME=="?*", TEST=="/lib/udev/devices/$name", \ + OPTIONS+="ignore_remove" + +# debugging monitor +RUN+="socket:/org/kernel/udev/monitor" + -- cgit v1.2.3-54-g00ecf