forked from pool/bluez
10 lines
185 B
Bash
10 lines
185 B
Bash
#!/bin/sh
|
|
BLUETOOTH_CONFIG=/etc/sysconfig/bluetooth
|
|
test -r $BLUETOOTH_CONFIG && $BLUETOOTH_CONFIG
|
|
|
|
if [ "$START_BLUETOOTHD" = "no" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
exec /usr/sbin/bluetoothd --udev
|