6c84f2a822
Copy from home:seife:testing/bluez via accept of submit request 21664 revision 29. Request was accepted with message: update to bluez-4.55 OBS-URL: https://build.opensuse.org/request/show/21664 OBS-URL: https://build.opensuse.org/package/show/Base:System/bluez?expand=0&rev=23
10 lines
187 B
Bash
10 lines
187 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
|