mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
10 lines
240 B
Text
10 lines
240 B
Text
|
|
# 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";
|
||
|
|
};
|