2009-07-10 16:41:47 +02:00
|
|
|
#!/bin/sh
|
2008-09-24 17:21:01 +02:00
|
|
|
BLUETOOTH_CONFIG=/etc/sysconfig/bluetooth
|
2009-10-12 16:23:00 +02:00
|
|
|
test -r $BLUETOOTH_CONFIG && . $BLUETOOTH_CONFIG
|
2008-09-24 17:21:01 +02:00
|
|
|
|
2009-07-10 16:41:47 +02:00
|
|
|
if [ "$START_BLUETOOTHD" = "no" ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
2008-09-24 17:21:01 +02:00
|
|
|
|
2009-07-10 16:41:47 +02:00
|
|
|
exec /usr/sbin/bluetoothd --udev
|