mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-21 18:50:50 +01:00
9150a0455e
And make it part of the FreeBSD-bluetooth package. This avoid calling service bluetooth on an installation without it installed. Sponsored by: Beckhoff Automation GmbH & Co. KG Differential Revision: https://reviews.freebsd.org/D38323
10 lines
240 B
Plaintext
10 lines
240 B
Plaintext
# When a USB Bluetooth dongle appears, activate it
|
|
attach 100 {
|
|
device-name "ubt[0-9]+";
|
|
action "service bluetooth quietstart $device-name";
|
|
};
|
|
detach 100 {
|
|
device-name "ubt[0-9]+";
|
|
action "service bluetooth quietstop $device-name";
|
|
};
|