mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-21 18:50:50 +01:00
cab549c76c
And put in it: - kbdcontrol - vidcontrol - moused - kbdmap Those aren't useful in a jail or for a modern desktop. While here, split the devd.conf part into some new files. Reviewed by: bapt Sponsored by: Beckhoff Automation GmbH & Co. KG Differential Revision: https://reviews.freebsd.org/D38321
36 lines
650 B
Plaintext
36 lines
650 B
Plaintext
notify 100 {
|
|
match "system" "DEVFS";
|
|
match "subsystem" "CDEV";
|
|
match "type" "CREATE";
|
|
match "cdev" "atp[0-9]+";
|
|
|
|
action "service moused quietstart $cdev";
|
|
};
|
|
|
|
notify 100 {
|
|
match "system" "DEVFS";
|
|
match "subsystem" "CDEV";
|
|
match "type" "CREATE";
|
|
match "cdev" "ums[0-9]+";
|
|
|
|
action "service moused quietstart $cdev";
|
|
};
|
|
|
|
notify 100 {
|
|
match "system" "DEVFS";
|
|
match "subsystem" "CDEV";
|
|
match "type" "CREATE";
|
|
match "cdev" "wsp[0-9]+";
|
|
|
|
action "service moused quietstart $cdev";
|
|
};
|
|
|
|
notify 100 {
|
|
match "system" "DEVFS";
|
|
match "subsystem" "CDEV";
|
|
match "type" "DESTROY";
|
|
match "cdev" "ums[0-9]+";
|
|
|
|
action "service moused stop $cdev";
|
|
};
|